.dcd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.dcd-toggle-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.dcd-toggle-wrap button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.dcd-toggle-wrap button.active,
.dcd-toggle-wrap button:hover {
    background: #f39c12;
}

.dcd-filter-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.dcd-filter-wrap select {
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-left: 10px;
}

.dcd-wrapper {
    display: grid;
    gap: 24px;
    transition: all 0.3s ease;
}

.dcd-grid-view {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dcd-list-view {
    grid-template-columns: 1fr;
}

.dcd-item {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.dcd-item:hover {
    transform: scale(1.03);
}

.dcd-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #fff;
}

.dcd-content {
    padding: 16px;
    color: #fff;
}

.dcd-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fcd34d;
}

.dcd-description {
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e1;
}
