/* Evde Destek Eğitimi ve İşlemler Tab Kartları CSS */

.home-support-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    
    padding: 0;
}

.home-support-card {
    background: white;
    border-radius: 6px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    min-height: 120px;
    max-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-support-card:hover {
    border-color: #1e87f0;
    box-shadow: 0 4px 12px rgba(30, 135, 240, 0.15);
    transform: translateY(-2px);
}

.home-support-card .operation-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.home-support-card .operation-icon {
    font-size: 14px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 3px;
}

.home-support-card h4 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1.1;
}

.home-support-card .operation-desc {
    color: #666;
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 8px;
    margin-top: 0;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-support-card .uk-button {
    width: 100%;
    font-weight: 500;
    border-radius: 3px;
    padding: 4px 8px;
    font-size: 10px;
    line-height: 1.1;
    margin-top: auto;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-support-card .uk-button:hover {
    transform: translateY(-1px);
}

/* Specific button colors for home support operations */
.home-support-card .uk-button-primary {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    border: none;
    color: white;
}

.home-support-card .uk-button-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border: none;
    color: white;
}

.home-support-card .uk-button-default {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    color: #495057;
}

.home-support-card .uk-button-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border: none;
    color: #212529;
}

.home-support-card .uk-button-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: none;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .home-support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .home-support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-support-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 12px;
    }

    .home-support-card {
        padding: 12px;
    }

    .home-support-card .operation-icon {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .home-support-card .operation-header h4 {
        font-size: 16px;
    }

    .home-support-card .operation-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .home-support-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .home-support-card {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }

    .home-support-card h4 {
        color: #f7fafc;
    }

    .home-support-card .operation-desc {
        color: #cbd5e0;
    }

    .home-support-card .operation-icon {
        background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
        border-color: #4a5568;
    }
}