﻿:root {

    --sh-main-color: #00a79d;
    --sh-partical-main-color: rgba(0, 167, 157, 0.1);
    --sh-dark-gray: #6c6d701;
    --sh-light-gray: #8e8f91;
    --sh-dark-green: #0f6c67;

}


.sh-fasel-line {
    width: 90%;
    height: 1px;
    background-color: rgb(224,224,224);
}

.sh-form-content-box {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    width: fit-content;
    padding-inline: 12px;
    padding-right: 30px;
    padding-block: 8px;
    border-radius: 3px;
}

    .sh-form-content-box:hover {
        background-color: var(--sh-partical-main-color);
    }

    .sh-form-content-box:focus-within {
        background-color: var(--sh-partical-main-color);
    }

/*#region Button*/

.sh-btn{
    border: none;
    cursor: pointer;
    padding-block: 5px;
    padding-inline: 5px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    user-select: none;
    font-size: 0.95rem;
}

.sh-btn:hover:active {
    transform: scale(0.95);
}

.sh-form-save-btn {
    background-color: var(--sh-btn-save-background-color);
    color: #fff;
}

.sh-from-print-pdf-btn {
    background-color: var(--sh-btn-print-pdf-background-color);
    color: #fff;
}

.sh-form-edit-btn {
    background-color: #2c974b;
    color: #fff;
}

.sh-form-edit-btn:hover {
     background-color: rgba(31, 97, 52, 0.9);
}

.sh-form-delete-btn {
    background-color: rgba(109, 1, 20, 0.75);
    color: #fff;
}

.sh-form-delete-btn:hover {
     background-color: rgba(109, 1, 20, 0.85);
     color: #fff;
}

.sh-form-add-btn {
    background-color: #0d6efd;
    color: #fff;
}

.sh-form-add-btn:hover {
    background-color: #0952c1;
}

.sh-primary-go-to-btn {
    background-color: #6c757d;  
    color: white;
}

.sh-primary-go-to-btn:hover {
     background-color: #5a6268;  
}

.sh-go-to-btn {
    font-family: NotoSansArabic-Medium;
    font-size: 0.85rem;
    color: #fff;
    background-color: #17a2b8;
}

/*#endregion*/

/*#region Input*/

.sh-input {
    padding-block: 4px;
    padding-inline: 5px;
    width: 370px;
    font-family: "NotoSansArabic-Regular";
}

.sh-input:focus {
     outline-color: var(--sh-main-color);
}

.sh-basic-textarea {
    min-width: 370px;
    min-height: 200px;
    resize: both;
}

.sh-basic-textarea:focus {
    outline-color: var(--sh-main-color);
}

.sh-form-dynamic-checkbox {
    display: flex;
    align-items: center;
    width: 290px;
}

.sh-checkbox {
    accent-color: blue;
    width: 24px;
    height: 24px;
}

/*#endregion*/

/*#region Textat*/

.sh-form-content-title {
    font-size: 1rem;
    letter-spacing: 0.5px;
}


.sh-error-message {
    background-color: rgba(220, 53, 69, .9);
    padding-block: 5px;
    color: #fff;
    font-size: 0.95rem;
    padding-inline: 4px;
    letter-spacing: 0.3px;
}

/*#endregion*/
