/* Ortak Düğme Stilleri */
.action-buttons .btn {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    min-width: 80px;
}

.action-buttons .btn i {
    margin-right: 5px;
}

/* Mobil için düğme stilleri */
@media (max-width: 768px) {
    .action-buttons {
        flex-wrap: wrap;
        gap: 8px !important;
    }
    
    .action-buttons .btn {
        flex: 1;
        min-width: 120px;
        height: 50px;
        font-size: 14px;
    }
    
    /* Tüm düğmeler için eşit yükseklik */
    .btn {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-sm {
        height: 35px;
    }
    
    .btn-lg {
        height: 50px;
    }
}

/* Desktop için düğme stilleri */
@media (min-width: 769px) {
    .btn {
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-sm {
        height: 32px;
    }
    
    .btn-lg {
        height: 48px;
    }
}

/* Dashboard butonları için özel stiller */
.dashboard-buttons .btn {
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dashboard-buttons .btn i {
    font-size: 18px;
}

/* Mobilde dashboard butonları */
@media (max-width: 768px) {
    .dashboard-buttons .btn {
        height: 55px;
        font-size: 15px;
    }
    
    .dashboard-buttons .btn i {
        font-size: 16px;
    }
} 