@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body {
    background-color: #f6f9fb;

    background-image: radial-gradient(
        circle farthest-corner at 10% 20%,
        rgba(234, 249, 249, 0.67) 0.1%,
        rgba(239, 249, 251, 0.63) 90.1%
    );
    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
    background-image: linear-gradient(
        to top,
        #f3e7e9 0%,
        #e3eeff 99%,
        #e3eeff 100%
    );
    background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);
}
#main {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;
}
.navbar {
    z-index: 999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.chatbox {
    background-color: #fff;
    color: #333;
    padding: 30px 30px 10px;
    border-radius: 16px;
    font-size: 16px;
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
}
.chatrequest {
    margin-bottom: 30px;
}
.domain-title {
    font-size: 26px;
    font-weight: 400;
    color: #333;
    margin: 0 0 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    line-height: 1.3;
}
.domain-title strong {
    font-weight: 700;
}
.chatbutton {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: #777;
    text-decoration: none;
    font-size: 13px;
    padding: 8px;
    transition: all 200ms ease-in-out;
    margin-bottom: 10px;
    background-color: #f2f5fa;
}
.chatbutton:hover {
    background-color: #eee;
    color: #000;
    transition: all 200ms ease-in-out;
}
.offerbutton i {
    color: rgb(118, 208, 235);
    margin-right: 3px;
}
.infobutton i {
    color: rgb(226, 197, 65);
    margin-right: 3px;
}
.copybutton i {
    color: rgb(108, 113, 255);
    margin-right: 3px;
}

.btn-one {
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 60px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    transition: all 200ms ease-in-out;
    margin-right: 10px;
}
.btn-one:hover {
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 60px;
    background-color: #ddd;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: all 200ms ease-in-out;
    margin-right: 10px;
}
.btn-two {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    transition: all 200ms ease-in-out;
}
.btn-two:hover {
    background-color: rgb(66, 66, 66);
    color: #ddd;
    transition: all 200ms ease-in-out;
}
.btn-three {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 12px;
    transition: all 200ms ease-in-out;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px;
    background-color: #fff;
}
