/*
Theme Name: Mostafa Asadi Alert Theme
*/

/* =========================
   Fonts
========================= */

@font-face {
    font-family: 'Yekan';
    src: url('fonts/Yekan.eot');
    src:
        url('fonts/Yekan.eot?#iefix') format('embedded-opentype'),
        url('fonts/Yekan.woff') format('woff'),
        url('fonts/Yekan.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* =========================
   Main Wrapper
========================= */

.ma-alerts{
    direction: rtl;
    text-align: right;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    font-family: Tahoma, sans-serif;
}

.ma-alerts *{
    box-sizing: border-box;
}

/* =========================
   Container
========================= */

.ma-alerts .ma-container{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* =========================
   Notification Card
========================= */

.ma-alerts .ma-single-notification{
    background: #fafaff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #a9a1a1;
  /*  box-shadow: 0 3px 14px rgba(0,0,0,0.07); */
    transition: all 0.25s ease;
}

.ma-alerts .ma-single-notification:hover{
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* =========================
   Header
========================= */

.ma-alerts .ma-notify-header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
	border-bottom-style:dashed;
	border-bottom-width:1px;
	border-bottom-color:#dbdbd8;
	
}


/* =========================
   STATUS COLORS
========================= */

.ma-status-cube {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex-shrink: 0;
}

.ma-status-red {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239,68,68,.25);
}

.ma-status-green {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34,197,94,.25);
}

.ma-status-blue {
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59,130,246,.25);
}

.ma-status-black {
    background: #64748b;
}

/* =========================
   Title
========================= */

.ma-alerts .ma-notify-title{
    margin: 5px;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #222;
    font-family: bakh;
    font-weight: normal;
}

/* =========================
   Grid
========================= */

.ma-alerts .ma-notify-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 12px;
    margin-bottom: 18px;
}

/* =========================
   Grid Item
========================= */

.ma-alerts .ma-notify-item{
    background: #f8f9fb;
    border: 1px solid #eceff3;
    border-radius: 12px;
    padding: 14px;
   /* min-height: 78px; */

    display: flex;
   /* flex-direction: column; */
    justify-content: space-between;
}

/* =========================
   Label
========================= */

.ma-alerts .ma-notify-label{
    font-size: 13px;
	font-family:bakh;
    color: #666;
    text-align: right;
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: bold;
}

/* =========================
   Value
========================= */

.ma-alerts .ma-notify-value{
    font-size: 13px;
    color: #222;
    font-weight: bold;
    text-align: right;
    line-height: 1.8;
    word-break: break-word;
	font-family:bakh;
}

/* =========================
   Content
========================= */

.ma-alerts .ma-notify-content{
    font-family:bakh ;
	
	line-height: 2;
    font-size: 12px;
    color: #333;
}

.ma-alerts .ma-notify-content p{
    margin-top: 0;
    line-height: 2;
}

/* =========================
   Pagination
========================= */

.ma-alerts .ma-pagination{
    margin-top: 35px;
    text-align: center;
}

.ma-alerts .ma-pagination .page-numbers{
    display: inline-block;
    min-width: 40px;
    padding: 8px 13px;
    margin: 4px;
    border-radius: 9px;
    background: #f1f3f6;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
}

.ma-alerts .ma-pagination .page-numbers:hover{
    background: #dfe5eb;
}

.ma-alerts .ma-pagination .current{
    background: #111;
    color: #fff;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px){

    .ma-alerts{
        padding: 10px;
    }

    .ma-alerts .ma-single-notification{
        padding: 16px;
        border-radius: 14px;
    }

    .ma-alerts .ma-notify-title{
        font-size: 21px;
    }

    .ma-alerts .ma-notify-grid{
        grid-template-columns: 1fr;
    }

}
