.cd-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
}

.cd-container h2, .cd-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

#cd-add-btn {
    background: #2d89ef;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    margin: 0 auto 20px;
    font-size: 16px;
}

#cd-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

#cd-form form label {
    display: block;
    margin: 10px 0;
}

#cd-form input[type="text"],
#cd-form input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

#cd-form button[type="submit"] {
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 15px;
}

.cd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.cd-table thead {
    background: #2d89ef;
    color: #fff;
}

.cd-table th,
.cd-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.cd-download-btn {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    color: #0073aa;
}

.cd-link {
    color: #2d89ef;
    text-decoration: none;
    font-weight: bold;
}

.cd-delete {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}
.cd-auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.cd-auth-card {
    background: #ffffff;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #0073aa;
}

.cd-auth-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #2d3436;
}

.cd-auth-card p {
    color: #636e72;
    font-size: 15px;
    margin-bottom: 25px;
}

.cd-auth-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.cd-auth-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.cd-auth-btn.login {
    background: #0984e3;
}

.cd-auth-btn.register {
    background: #00b894;
}

.cd-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cd-auth-btn i {
    margin-right: 8px;
}

.studio-branding {
    background: #fff;
    padding: 20px;
    margin-top: 40px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: sans-serif;
}
.studio-branding .studio-logo {
    max-width: 100px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.studio-branding .studio-info h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}
.studio-branding .studio-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}
.studio-branding i {
    margin-right: 8px;
    color: #007b5e;
}
