/* Categories Page Styles */

/* Form styling */
.form-select,
.form-control {
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.form-select:focus,
.form-control:focus {
    border-color: #ff0050;
    box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

/* Select specific styling */
select.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23606060' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* Category cards */
.card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.card-title a {
    color: #ff0050;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.card-title a:hover {
    color: #e6004a;
    text-decoration: none;
}

.card-text {
    color: #606060;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-select,
    .form-control {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    select.form-select {
        padding-right: 36px;
    }
}



