body.dark {
    --color-text-main: #f1f1f1;
    --color-text-secondary: #a8a8a8;
    --color-bg-body: #030303;
    --color-bg-card: #050505;
    --color-border-card: #303030;
    --color-shadow: #050505b7;
    --color-divider: #ffffff21;
    --color-button-bg: #252525;
    --color-input-bg: #0f0f0f;
    --color-input-text: #f1f1f1;
    --color-input-border: #2a2a2a;
    --color-button-text: #a8a8a8;
    --color-button-border: #343434;
    --color-card-inside: #262626;
}

body.light {
    --color-text-main: #1a1a1a;
    --color-text-secondary: #6b6b6b;
    --color-bg-body: #f8f9fa;
    --color-bg-card: #ffffff;
    --color-border-card: #e1e5e9;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-divider: rgba(0, 0, 0, 0.1);
    --color-button-bg: #ffffff;
    --color-input-bg: #ffffff;
    --color-input-text: #1a1a1a;
    --color-input-border: #d0d6d9;
    --color-button-text: #333333;
    --color-button-border: #c4cdd1;
    --color-card-inside: #fefefe;
}

.input {
    width: 500px;
    height: 30px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
}

hr {
    max-width: 100%;
}

.loader {
  border: 6px solid var(--color-bg-card);
  border-top: 6px solid var(--color-button-text);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-results {
    width: 500px;
    height: auto;
}

.websites-links svg {
    min-width: 34px !important;
    height: 34px !important;
}

.result-infos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 0px;
}

.result-infos p:nth-child(odd) {
    justify-self: start;
}

.result-infos p:nth-child(even) {
    justify-self: end;
}

.hidden {
    display: none;
}

#lookup-btn {
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    box-shadow: none;
    position: absolute;
    right: 20px
}

#lookup-btn svg {
    min-width: 20px;
}

input {
    height: 30px;
    width: 500px;
}

.stats-container {
    position: fixed;
    bottom: 80px;
    width: auto;
    right: 20px;
    display: flex;
    width: 200px;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    gap: 14px;
}

.wrapper {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: row !important;
    gap: 20px !important;
    width: 100%;
}

.stat-card {
    border-radius: 16px;
    width: 100px;
    height: 100px;
    background-color: var(--color-cardd-bg);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 20px;
    justify-content: flex-end;
}

.stats-svg {
    color: var(--color-text-secondary);
    min-width: 20px;
    min-height: 20px;
}

.stat-card-title {
    font-size: 14px !important;
    margin: 0;
    margin-bottom: 3px;
    font-weight: 500;
}

.stat-card-subtitle {
    font-size: 12.5px;
    color: var(--color-text-secondary);
    margin: 0;
}

.stat-card-large {
    height: 1px;
    width: auto;
    flex-direction: row;
    align-items: center;
}

.stat-card-meta.large {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.stat-card-title.large {
    font-size: 16px;
}

.stat-card-subtitle.large {
    font-size: 13.5px;
}

@media (max-width: 768px) {
    .bottom-right {
        bottom: 93%;
        right: 80px;
        transform: translateX(50%);
    }

    .stats-container {
        bottom: 20px;
    }

    .footer-1 {
        width: 200px;
        left: 20px;
        bottom: 80px !important; 
    }

    .footer-2 {
        width: 250px;
        left: 20px;
    }
}