.form-control{
    position: relative;
    width: 100%;
    outline: none;
    color: rgb(16, 13, 72);
    line-height: 24px;
    padding: 10px;
    background: white;
    text-align: center;
    display: block;
    font-family: 'ThemeX', sans-serif;
    border: 1px solid #c9d3dd;
    border-radius: 0px 5px 5px 0px;
}
.search{
    width: 130px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(171.02deg, #635ebb 4.38%, #100d48 111.49%);
    border-radius: 5px 0px 0px 5px;
}
.hidden{
    display: none
}
.search:hover{
    color: rgb(31 41 55);
    background: rgb(209 213 219);
}
.inputClear{
    position: absolute;
    top: 12px;
    width: auto;
    left: 225px;
}
.history-card {
    background: #FFF;
    border: 1px solid #c9d3dd;
    box-shadow: 0 5px 15px 0 rgba(138, 155, 165, 0.15);
}        
#whois-form{
    margin-bottom: 20px;
    box-shadow: 0 5px 15px 0 rgba(138, 155, 165, 0.15);
}
.history-card h2{
    color: #100d48;
    padding: 10px 20px;
}
.history-card .searches{
    padding: 0px 20px 10px;
}
.history-card #history-list{
    display: flex; 
}
.history-card #history-list li{
    width: max-content;
    color: #FFF;
    margin: 0px 5px;
    padding: 0px;
    display: flex;
    background: #e1e1e1;
    border-radius: 2px;
}   
.history-card #history-list span{
    color: #646c8e;
    padding: 5px 10px;
    font-size: 14px;
}
.history-card #history-list button{
    background: #646c8e;
    border-radius: 1px;
    padding: 5px 8px;
    font-size: 13px;
}
.history-card #history-list .noHistory{
    background: none;
    color: #100d48;
}
#resultDiv{
    padding: 10px;
    margin-top: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #4B5563 #E5E7EB;
    background: #FFF;
    border: 1px solid #c9d3dd;
    box-shadow: 0 5px 15px 0 rgba(138, 155, 165, 0.15);
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.loading-spinner {
    animation: rotate 1.5s linear infinite;
}
.language-switcher #languageSelect{
    outline: none;
    padding: 9px;
    height: 48px;
    min-width: 105px;
    background: #FFF;
    border: 1px solid #c9d3dd;
    border-right: 0px;
    border-left: 0px;
}
.result-container {
    direction: ltr;
    max-height: 500px;
    scrollbar-width: thin;
    scrollbar-color: #4B5563 #E5E7EB;
}
.result-container::-webkit-scrollbar {
    width: 12px;
}

.result-container::-webkit-scrollbar-track {
    background: #E5E7EB;
}

.result-container::-webkit-scrollbar-thumb {
    background-color: #4B5563;
    border-radius: 20px;
    border: 3px solid #E5E7EB;
}
#saveScreenshot svg,#copyOriginalInfo svg{
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke : rgb(37 99 235);
}
#originalInfo{
    margin-top: 20px;
}
#saveScreenshot,#copyOriginalInfo{
    width: 40px;
    height: 40px;
    padding: 7px;
    position: absolute;
    right: 20px;
    background: none;
}
.history-card>div {
    scrollbar-width: thin;
    scrollbar-color: #4B5563 #E5E7EB;
}
.history-card>div::-webkit-scrollbar {
    width: 8px;
}
.history-card>div::-webkit-scrollbar-track {
    background: #E5E7EB;
}
.history-card>div::-webkit-scrollbar-thumb {
    background-color: #4B5563;
    border-radius: 20px;
    border: 2px solid #E5E7EB;
}
.watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4B5563;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}
#importantInfoCard,#originalInfoCard{
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    background: rgb(239 246 255);
}
#importantInfoCard .value{
    display: inline-block;
    width: 8rem;
    text-align: right;
    margin-right: 15px;
}
@media (max-width: 640px) {
    .result-container {
        padding-bottom: 65px;
    }
}
.post {
    line-height: 1.6;
    padding: 10px;
    margin-top: 20px;
    background: #FFF;
    border: 1px solid #c9d3dd;
    box-shadow: 0 5px 15px 0 rgba(138, 155, 165, 0.15);
}
.post h3 {
    color: #100d48;
    margin-bottom: 10px;
}
.post p {
    font-size: 0.9em;
    margin-bottom: 15px;
}
.post ul {
    list-style-type: none;
    padding-left: 20px;
}
.post ul li {
    position: relative;
    margin-bottom: 10px;
    padding-right: 20px;
}
.post ul li::before {
    content: "-";
    position: absolute;
    right: 0;
    color: #0056b3;
    font-weight: bold;
}