﻿/*@font-face {
    font-family: 'Cairo-Regular';
    src: url('../../static/Cairo-Regular.ttf');
}*/
@font-face {
    font-family: 'Cairo-Regular';
    src: url('../../static/URWGeometricArabicRegular.ttf');
}
@font-face {
    font-family: 'Cairo-Bold';
    src: url('../../static/Cairo-SemiBold.ttf');
}
/*@font-face {
    font-family: 'Cairo-Bold';
    src: url('../../static/Cairo-Bold.ttf');
}*/
body {
    font-family: 'Cairo-Regular' !important;
}
.custom-border {
    border-top: 9px double #1a8e5f;
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
}
.card-sub-title-border {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    background-image: linear-gradient(to right, #1a8e5f, #00bfa5);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 3px;
}
.dashboard-section-header {
   
    background-color: #1a8e5f !important;
    color:white !important
}

.blinking-button {
   
    animation: blink-effect 3s linear infinite;
}

@keyframes blink-effect {
    0%, 100% {
        opacity: 0;
    }
    /* Hidden */
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


/*نص عمودي*/ 
.vertical {
    transform: rotate(270deg);
    white-space: nowrap; /* يمنع تقطيع النص */
}