.cdc-container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.cdc-container h2 {
    color: #007bff;
    font-size: 26px;
    margin-bottom: 6px;
    font-weight: 600;
}

.cdc-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-size: 16px;
}

th {
    background: #007bff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

input {
    width: 75px;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Buttons */
button {
    margin: 10px;
    padding: 12px 18px;
    font-size: 16px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
}

button:hover {
    background: #0056b3;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .cdc-container {
        max-width: 90%;
        padding: 15px;
    }
    h2 {
        font-size: 22px;
    }
    p {
        font-size: 12px;
    }
    table {
        font-size: 14px;
    }
    th, td {
        font-size: 14px;
        padding: 6px;
    }
    input {
        width: 65px;
        font-size: 14px;
    }
    button {
        padding: 10px 16px;
        font-size: 14px;
    }
}
