/* 43MARKS AESTHETIC REPLICA WITH SPEED DIAL 2 TABS */

.sde-tabs-menu {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 1200px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: none;
}

.sde-tab-item {
    padding: 8px 18px;
    cursor: pointer;
    background-color: #f0f0f0;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    border-radius: 20px; /* Bordes totalmente redondeados estilo botón */
    transition: all 0.2s ease;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sde-tab-item:hover {
    background-color: #e4e4e4;
    transform: translateY(-1px);
}

.sde-tab-item.active {
    background-color: #1a73e8; /* Azul Speed Dial 2 */
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(26,115,232,0.4);
}.sde-43marks-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: start;
}

.sde-column {
    border: 1px solid transparent; 
}

.sde-column-header {
    background-color: #666666;
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    padding: 3px 8px;
    margin: 0;
}

.sde-column-body {
    padding: 5px 0 10px 0; /* Some top padding, some bottom padding */
    min-height: 140px; /* Ensures color goes down decently if list is short */
}

ul.sde-link-list {
    list-style-type: disc;
    margin: 0 0 0 20px !important; /* Indentation for bullets */
    padding: 0 !important;
}

ul.sde-link-list li {
    font-size: 13px !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    color: #000000; /* bullet color black */
}

/* Specific bullet sizing to match the tiny dot from early Web */
ul.sde-link-list li::marker {
    font-size: 10px;
    color: #333;
}

ul.sde-link-list li a {
    color: #0000CC !important; /* Classic web Blue */
    text-decoration: none !important;
}

ul.sde-link-list li a:hover {
    text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .sde-column {
        width: calc(20% - 10px); /* 5 cols */
    }
}
@media (max-width: 800px) {
    .sde-column {
        width: calc(25% - 10px); /* 4 cols */
    }
}
@media (max-width: 600px) {
    .sde-column {
        width: calc(33.333% - 10px); /* 3 cols */
    }
}
@media (max-width: 400px) {
    .sde-column {
        width: calc(50% - 10px); /* 2 cols */
    }
}
