﻿/* LicenceList css */

.btn-solid-custom {
    background-color: rgba(13, 110, 253, 0.4); /* mavi arka plan */
    color: white; /* yazı ve ikon beyaz */
    border: initial;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.btn-solid-custom:hover {
        background-color: rgba(4, 12, 87, 0.8); /* hover’da biraz daha koyu mavi */
        color: black;
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4); /* hafif glow */
        transform: translateY(-1px); /* hover efekti */
}

.btn-solid-custom:active {
        transform: scale(0.97); /* basılma efekti */
}

.validuntil.expired {
    background: #8A0000 !important; /* kırmızı ton */
    color: #fff !important;
}

.validuntil.expiring-soon {
    background: #FFB26F !important; /* sarı/turuncu ton */
    color: #000 !important;
}

.validuntil.ok {
    background: #89AC46 !important; /* yeşil ton */
    color: #fff !important;
}

/* Hover efektini sadece bu hücrelerde değiştirmek isterseniz */
td.validuntil:hover {
    filter: brightness(0.95);
    transform: scale(1.01);
    transition: all 0.12s ease;
}

.active-icon {
    font-size: 1.3rem;
    color: #28a745; /* yeşil */
    transition: color 0.3s ease, transform 0.3s ease;
}

.active-icon:hover {
        color: #218838; /* koyu yeşil */
        transform: scale(1.2);
}

.inactive-icon {
    font-size: 1.3rem;
    color: #dc3545; /* kırmızı */
    transition: color 0.3s ease, transform 0.3s ease;
}

.inactive-icon:hover {
        color: #bd2130; /* koyu kırmızı */
        transform: scale(1.2);
}


/* EditList.css */

.validuntil.expired {
    background: #8A0000 !important; /* kırmızı ton */
    color: #fff !important;
}

.validuntil.expiring-soon {
    background: #FFB26F !important; /* sarı/turuncu ton */
    color: #000 !important;
}

.validuntil.ok {
    background: #89AC46 !important; /* yeşil ton */
    color: #fff !important;
}

/* Hover efektini sadece bu hücrelerde değiştirmek isterseniz */
td.validuntil:hover {
    filter: brightness(0.95);
    transform: scale(1.01);
    transition: all 0.12s ease;
}

.btn-servermac {
    background-color: blue; /* aktif: mavi */
    color: white;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

    .btn-servermac:hover:enabled {
        background-color: #063c9e; /* aktif hover: koyu mavi */
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
        transform: translateY(-1px);
    }

    .btn-servermac:disabled {
        background-color: #c0c0c0 !important; /* pasif: gri */
        color: #6c757d !important;
        cursor: not-allowed;
        box-shadow: none !important;
    }

    .btn-servermac i {
        font-size: 1rem; /* ikon boyutu */
    }
