﻿.bttn-link {
    color: #009ef8;
    font-family: Poppins-Bold;
}

    .bttn-link:active, .bttn-link:hover, .bttn-link:focus {
        color: #2c99d791;
    }


.btn, .btn:active, .btn:hover,
.btn:focus, .btn:focus-visible {
    border: none !important;
    outline: none !important;
    color: white !important;
}

.Bttn-Apply, .Bttn-Apply:active, .Bttn-Apply:hover,
.Bttn-Apply:focus, .Bttn-Apply:focus-visible {
    background-color: #ff9c07;
    font-family: Poppins-Bold;
    padding: 10px;
    border-radius: 8px;
}

    .Bttn-Apply:hover {
        background-color: #ff9c07bf;
    }

.input-box .Bttn-Apply {
    width: 15%;
}

.blue-submit-bttn {
    width: 100%;
    background-color: #009ef8;
    font-family: Poppins-SemiBold;
    border-radius: 8px;
    padding: 10px;
}

    .blue-submit-bttn:hover {
        background-color: #009ef8a8;
    }

.btn-orange {
    background-color: #ff9c07;
    border-radius: 10px;
    font-size: 14px;
}

    .btn-orange:hover {
        background-color: #fd8620;
    }
/*#region radio button */


.myradio {
    display: inline-block;
    border-radius: 999px;
    margin: 5px;
}

.myradio__input {
    opacity: 0;
    position: absolute;
}

.myradio__label {
    border-radius: 9999px;
    padding: 6px 15px 6px 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
}

    .myradio__label::before, .myradio__label::after {
        content: "";
        border-radius: 9999px;
        width: 16px;
        height: 16px;
        margin: 3px 0;
        position: absolute;
        z-index: 1;
    }

    .myradio__label::before {
        background-color: #dcdcdc;
        border: 2px solid #dcdcdc;
        top: 4px;
        left: 10px;
        padding: 8px;
        transition: all 0.5s;
    }

    .myradio__label::after {
        background-color: #ffffff;
        top: 6px;
        left: 12px;
        transition: all 0.15s;
        transition-timing-function: ease-out;
    }

    .myradio__label:hover {
        background-color: rgba(114, 86, 248, 0.1);
    }

        .myradio__label:hover::before {
            border: 2px solid #7256f8;
        }

.myradio__input:checked ~ .myradio__label::before {
    background-color: #7256f8;
    border: 2px solid #7256f8;
}

.myradio__input:checked ~ .myradio__label::after {
    width: 8px;
    height: 8px;
    top: 10px;
    left: 16px;
}


/*#endregion */
.btn-Icons-Attached {
    padding: 7px 10px 5px 9px !important;
    font-size: 17px;
    color: #fd1004 !important;
}

    .btn-Icons-Attached:hover {
        background-color: #fd1004;
        color: white !important;
    }



.btn-Icons-orange {
    padding: 1px !important;
    font-size: 11px;
    background-color: #d2deeb5c;
    color: #ff9c07 !important;
}

    .btn-Icons-orange:hover {
        background-color: #ff9c07;
        color: white !important;
    }

.icon-Info {
    height: 35px;
}

.btn-blue, .btn-green {
    border-radius: 10px;
    font-size: 14px;
}

.btn-blue {
    background-color: #234976;
}

    .btn-blue:hover {
        background-color: #0c4c97;
    }


.btn {
    cursor: pointer;
}

.btn-red {
    background-color: #ff4141;
    border-radius: 10px;
    font-size: 14px;
}

    .btn-red:hover {
        background-color: #cf1c1cde;
    }

.badge {
    position: absolute;
    top: -5px;
    right: -6px;
    font-size: 11px;
    padding: 3px 6px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* محاذاة العناصر في المنتصف */
    gap: 10px;
    padding: 5px;
    max-width: 100%;
    box-sizing: border-box;
}

/* المجموعة التي تحتوي على الأزرار */
.button-group {
    display: flex;
    flex-wrap: wrap; /* السماح بالتفاف العناصر */
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* الحاوية الفردية لكل زر */
.button-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}



/* الأيقونات */
.Admin-Icons {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

    .Admin-Icons:hover {
        transform: scale(1.1);
    }

.warning-icon {
    display: inline-block;
    background-color: #f39c12;
    color: white;
    font-size: 13px;
    padding: 3px;
    border-radius: 3px;
    text-align: center;
}
/*----------------------------*/
.save-table {
    background-color: #28a745; /* أخضر عصري */
    border: none;
    border-radius: 6px; /* مربّع بحواف ناعمة */
    width: 23px;
    height: 23px;
    /*  display: flex;
    align-items: center;
    justify-content: center;*/
    cursor: pointer;
    transition: all 0.3s ease;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);*/
}

    .save-table i {
        font-size: 13px;
        color: #fff; /* أيقونة باللون الأبيض */
    }

    .save-table:hover {
        background-color: #218838; /* أخضر أغمق */
        transform: scale(1.08); /* تكبير بسيط */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    }
