@font-face {
    font-family: 'MB font Regular';
    src: url('./fonts/MBCorpo-Text-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: black;
    font-family: "MB Corpo A Title Cond Office";
    font-style: normal;
    margin: 0;
    padding-left: 10px; 
    padding-right: 10px;
}
footer {
    font-family: "MB font Regular";
}
main {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}
.error-text {
    margin-top: 10rem;
    font-weight: bold;
    font-size: 32px;
    text-align: center;
    color: rgb(218, 218, 218);
}

.container {
    width: 100vw;
    max-width: 1200px;
    margin: 0 auto;
    height: 100vh;
    background: #0f0f10;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    overflow: auto;
}

.logo {
    width: 4.5rem;
    display: block;
    margin: 0 auto 0.6rem auto;
}

h2 {
    text-align: center;
    color: white;
    font-size: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 10px auto 0 auto;
    gap: 20px;
}

.question-block {
    transition: background-color 0.2s ease-in;
    font-family: "MB Corpo A Title Cond Office";
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    border-radius: 6px;
    background: #19191B;
    margin-bottom: 1.2rem;
    padding: 1rem;
    will-change: background-color;
}

.question-block:hover {
    background: #1f1f21;
}
.question-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}



/* Mobile styles */
@media (max-width: 576px) {
    body, .container {
        font-size: 0.9 rem;
    }
    .container {
        padding: 0.6rem;
    }
    .logo {
        width: 2rem;
    }
    .question-block {
        padding: 0.6rem;
    }
    h2 {
        font-size: 1.2rem;
    }
}

/* Tablet styles */
@media (max-width: 900px) {
    .container {
        padding: 1rem;
    }
    .logo {
        width: 3rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}

/* Laptop styles */
@media (min-width: 901px) and (max-width: 1200px) {
    .container {
        padding: 1.5rem;
    }
    .logo {
        width: 4rem;
    }
    h2 {
        font-size: 1.8rem;
    }
}

/* Spinner and animation styles remain unchanged */
.spinner-icon {
    display: inline-block;
    vertical-align: middle;
    animation: spin 1s linear infinite;
    color: #666;
    will-change: transform;
    transform-origin: center center;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
/* Animation for the loading dots */
@keyframes threedots {
    0%   { content: ".";}
    33%  { content: "..";}
    66%  { content: "...";}
    100% { content: ".";}
}

.loading-text {
    margin-top: 10rem;
    font-weight: bold;
    font-size: 32px;
    color: gray;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.loading-text::after{
    content: ""; 
    animation: threedots 1.5s steps(1,end) infinite;

    display: inline-block;
    width: 36px;
    min-height: 1em;
    text-align: left;
    vertical-align: baseline;
    white-space: nowrap;
    overflow: hidden;
}

.history-title{
    color:white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.source-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.source-item {
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #292828;
    margin-top: 10px;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
    
    max-width: 80vw;
    min-width: 300px;

    overflow: hidden;
    word-wrap: break-word;
    word-break: break-word;
}

.source-item img {
    width: 1rem;
    margin-right: 0.5rem;
}

.source-item a {
    color: #fff;
}

.row {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Group 1272628559 */
.row-disk {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;

    border-radius: 50%;
    background-color: #323232;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

.row-title {
 flex: 1;
 font-size: 16px;
 color: #fff;
 word-wrap: break-word;
 font-family: 'MB font Regular';
}

.row-item-disk{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;

    border-radius: 50%;
    background-color: #131314;
    color: #6cad92;
    font-family: 'MB Corpo A Text Cond WEB';
    font-weight: bold;
    font-size: 1rem;
    margin-right: 5px ;
}
.row-item {
 flex: 1;
 font-size: 14px;
 color: #fff;
 font-family: 'MB font Regular';
 font-style: normal;
 opacity: 0.6;

 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.row-item a {
    text-decoration: none;
}
.row-item a:hover {
    text-decoration: underline; 
}

.text-link{
    color:#0078D6; 
    text-decoration:underline;
    white-space: nowrap;
} 
.text-link-color{
    color:#0078D6; 
} 