.mr-calendar-container {
    margin: 0 auto;
    direction: rtl;
}

.mr-calendar {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.mr-persian-calendar-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mr-calendar-container .tab-content{
    width: 100% !important;
}

.mr-calendar-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.mr-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.mr-nav-btn:hover {
    background: rgba(255,255,255,0.3);
}

.mr-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f8f9fa;
}

.mr-weekday {
	padding: 5px;
	text-align: center;
	font-weight: bold;
	color: #495057;
	font-size: 12px;
}

.mr-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.mr-calendar-day {
    min-height: 100px;
    border: 1px solid #dee2e6;
    padding: 8px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}

.mr-calendar-day:hover {
    background: #f8f9fa;
}

.mr-calendar-day.today {
    background: #e3f2fd;
    font-weight: bold;
}

.mr-calendar-day.other-month {
    color: #adb5bd;
    background: #f8f9fa;
}

.mr-day-number {
    font-weight: bold;
    margin-bottom: 5px;
}

.mr-booking-list {
    max-height: 70px;
    overflow-y: auto;
}

.mr-booking-item {
    color: #646970;
    padding: 3px 6px;
    margin: 2px 0;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.mr-booking-item:hover {
    opacity: 0.8;
}

.mr-booking-item.pending {
    background: #ffc107;
    color: #333;
}

.mr-booking-item.approved {
    background: #28a745;
}

.mr-booking-item.rejected {
    background: #dc3545;
}

.mr-booking-item.cancelled {
    background: #6c757d;
}

.mr-booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    direction: rtl;
}

.mr-form-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.mr-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.mr-form-group input,
.mr-form-group select,
.mr-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.mr-form-group input:focus,
.mr-form-group select:focus,
.mr-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.mr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mr-attendees-list {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 10px;
    min-height: 100px;
}

.mr-attendee-item {
    background: #e9ecef;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 15px;
    display: inline-block;
    font-size: 14px;
}

.mr-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s;
}

.mr-submit-btn:hover {
    transform: translateY(-2px);
}

.mr-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.mr-message {
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: bold;
}

.mr-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mr-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mr-message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.mr-loading {
    text-align: center;
    padding: 20px;
}

.mr-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Toast - New Attendee */
#mr-new-attendee-notice {
    transform: translate(-50%, -50%) scale(0.96);
    animation: mr-toast-in 350ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes mr-toast-in {
    from {
        opacity: 0;
        transform: translate(-50%, -55%) scale(0.92);
        box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    }
}

@keyframes mr-toast-out {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.98);
        box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    }
}

@media (max-width: 480px) {
    #mr-new-attendee-notice {
        max-width: calc(100% - 32px);
    }
}
/* Responsive Design */

@media (max-width: 768px)    {
    .mr-form-row {
        grid-template-columns: 1fr;
    }

    .mr-calendar-day-header{
        min-width: 50px;
        font-size: 12px;
    }

    .mr-calendar-grid{
        padding: 5px !important;
    }

    .mr-booking-count {
    	top: -1px !important;
	    left: -1px !important;
	    border-radius: 8px 35px 35px 35px !important;
    }

    .mr-calendar-header{
        padding: 6px;
        width: 61%;
        height: 53px !important;

    }
    .mr-calendar-filters {
        gap: 12px;
        padding: 5px;
        width: 50%;
        height: 53px !important;
    }

    .mr-filter-group label {
    	font-weight: 600;
    	width: 150px;
	    font-size: 13px !important;
    }

    .mr-current-month {
	    font-size: 14px !important;
    }

    .mr-calendar-nav {
    	padding: 5px !important;
    }

    .mr-calendar-grid {
        overflow: scroll;
    }

    .mr-current-month{
        text-align: center !important;
    }

    .mr-nav-btn{
        font-size: 13px !important;
        width: 62px !important;
        padding: 5px !important;
    }

    .mr-filter-group select {
        font-size: 13px !important;
    }

    .dashicons.dashicons-arrow-left-alt2 {
	    display: none   ;
    }

    .dashicons.dashicons-arrow-right-alt2 {
	    display: none;
    }
    
    .mr-calendar-day {
        min-height: 80px;
        font-size: 14px;
    }
    
    .mr-booking-form {
        padding: 20px;
        margin: 10px;
    }
}

.mr-calendar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    direction: rtl;
}

.mr-room-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.mr-calendar-container .room-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.mr-calendar-container .room-tab:hover {
    background: #e8f4fd;
    border-color: #2196F3;
}

.mr-calendar-container .room-tab.active {
    background: #2196F3;
    color: white;
    border-color: #1976D2;
}

.mr-calendar-container .tab-name {
    font-weight: bold;
    font-size: 14px;
}

.mr-calendar-container .tab-capacity {
    font-size: 12px;
    opacity: 0.8;
}

.mr-calendar-container .tab-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.mr-calendar-container .room-tab.active .tab-count {
    background: rgba(255,255,255,0.3);
}

.mr-calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	color: white;
	border-radius: 10px;
	width: 50%;
	height: 65px;
}

.mr-nav-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.mr-nav-btn:hover {
    background: rgba(255,255,255,0.3);
}

#current-month-year {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.mr-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.legend-color.booking-pending {
    background: #ff9800;
}

.legend-color.booking-approved {
    background: #4caf50;
}

.legend-color.booking-rejected {
    background: #f44336;
}

.legend-color.today {
    background: #2196F3;
}

.legend-color.weekend {
    background: #9e9e9e;
}

.mr-persian-calendar {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #37474f;
    color: white;
}

.weekday {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.weekday.weekend {
    background: #d32f2f;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e0e0e0;
}

.calendar-day:hover {
    background: #f5f5f5;
    transform: scale(1.02);
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.calendar-day.empty {
    background: #fafafa;
    cursor: default;
}

.calendar-day.empty:hover {
    transform: none;
    box-shadow: none;
}

.calendar-day.today {
    background: #e3f2fd;
    border: 2px solid #2196F3;
}

.calendar-day.weekend {
    background: #ffebee;
}

.calendar-day.has-bookings {
    background: #f1f8e9;
}

.day-number {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.calendar-day.today .day-number {
    color: #2196F3;
}

.calendar-day.weekend .day-number {
    color: #d32f2f;
}

.day-bookings {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-indicator {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.booking-indicator:hover {
    transform: scale(1.05);
}

.booking-indicator.booking-pending {
    background: #ff9800;
}

.booking-indicator.booking-approved {
    background: #4caf50;
}

.booking-indicator.booking-rejected {
    background: #f44336;
}

.booking-time {
    font-weight: bold;
}

#new-booking-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.booking-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.booking-form-header h4 {
    margin: 0;
    color: #333;
}

#close-new-booking-form {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#close-new-booking-form:hover {
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 2px rgba(33,150,243,0.2);
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.mr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mr-btn-primary {
    background: #2196F3;
    color: white;
}

.mr-btn-primary:hover {
    background: #1976D2;
}

.mr-btn-secondary {
    background: #6c757d;
    color: white;
}

#reset-timeline{
    background-color: var(--kadec-logo-color) !important;
}

.mr-btn-secondary:hover {
    background: #545b62;
}

#mr-booking-modal .mr-modal-body.mr-swipe-left{animation:mrSwipeLeft .2s ease}
#mr-booking-modal .mr-modal-body.mr-swipe-right{animation:mrSwipeRight .2s ease}
@keyframes mrSwipeLeft{from{transform:translateX(6px);opacity:.95}to{transform:translateX(0);opacity:1}}
@keyframes mrSwipeRight{from{transform:translateX(-6px);opacity:.95}to{transform:translateX(0);opacity:1}}
#mr-booking-form-date-title.mr-title-animate-left{animation:mrTitleSlideLeft .25s ease}
#mr-booking-form-date-title.mr-title-animate-right{animation:mrTitleSlideRight .25s ease}
@keyframes mrTitleSlideLeft{from{transform:translateX(8px);opacity:.6}to{transform:translateX(0);opacity:1}}
@keyframes mrTitleSlideRight{from{transform:translateX(-8px);opacity:.6}to{transform:translateX(0);opacity:1}}
.mr-btn{transition:transform .15s ease,box-shadow .15s ease}
.mr-btn-pulse{transform:scale(.97);box-shadow:0 0 0 4px rgba(40,75,140,.15)}
.mr-message {
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.mr-message.mr-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mr-message.mr-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .mr-room-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .mr-calendar-container .room-tab {
        justify-content: space-between;
    }
    
    .calendar-day {
        min-height: 80px;
        font-size: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    #new-booking-form {
        width: 95%;
        padding: 15px;
    }
    
    .mr-legend {
        flex-direction: column;
        gap: 10px;
    }
}
.mr-calendar-container {
    margin: 0 auto;
    padding: 15px;
    direction: rtl;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.mr-calendar-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(40, 75, 140, 0.1);
    width: 50%;
    height: 65px;
}

.mr-filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mr-filter-group label {
    font-weight: 600;
    width: 150px;
}

.mr-filter-group select {
    padding: 8px 12px;
    border: 1px solid rgba(40, 75, 140, 0.2);
    border-radius: 6px;
    background-color: white;
}

.nav-tab-wrapper a {
	text-decoration: none;
	font-weight: 600;
	color: #284B8C;
	padding: 10px 15px;
	font-size: 14px;
	border-radius: 8px;
}

.nav-tab {
	background: #757b862e;
	color: #284b8c !important;
}

.nav-tab.nav-tab-active {
	background: #284B8C;
	color: white !important;
}

.mr-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(40, 75, 140, 0.1);
}

.mr-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: #284B8C;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 15px;
}

.mr-nav-btn:hover {
    background: #1a3366;
    transform: translateY(-2px);
}

.mr-current-month {
    font-weight: 600;
    font-size: 18px;
    color: #284B8C;
}

.mr-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mr-calendar-day-header {
    background: #284B8C;
    color: white;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
}

.mr-calendar-day {
    position: relative;
    min-height: 80px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mr-calendar-day:hover {
    border-color: #284B8C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 75, 140, 0.15);
}

.mr-calendar-day.mr-today {
    background: #e3f2fd;
    border-color: #2196f3;
}

.mr-calendar-day.mr-has-bookings {
    background: #f0f8f0;
    border-color: #4caf50;
}

.mr-calendar-day.mr-past {
    background: #ffeaea;
    border-color: #ffcdd2;
    color: #999;
}

.mr-calendar-day.mr-past .mr-day-number {
    color: #999;
}

.mr-calendar-day.mr-past:hover {
    background: #ffdddd;
    border-color: #ffb3ba;
    transform: none;
    box-shadow: none;
}

.mr-calendar-day.mr-past .mr-booking-count {
    background: #c62828;
    color: white;
}

.mr-day-number {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.mr-booking-count {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #4caf50;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-btn-wrapper{
    display: flex;
    gap: 20px;
}

.mr-new-meeting-badge {
	position: absolute;
	bottom: 5px;
	right: 5px;
	background: #ff4444;
	color: white;
	font-size: 10px;
	font-weight: bold;
	padding: 4px;
	border-radius: 21px;
	white-space: wrap;
	z-index: 2;
	animation: pulse-new-meeting 2s infinite;
	width: 35px;
	height: 35px;
	text-align: center;
}

@keyframes pulse-new-meeting {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.mr-calendar-day-empty {
    background: #f8f9fa;
    border: none;
    cursor: default;
}

.mr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.mr-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 707px;
    width: 90%;
    max-height: 86vh;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: auto;
}

.mr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 10px;
    border-bottom: 1px solid #eee;
}

.mr-modal-header h3 {
    margin: 0;
    color: #284B8C;
}

.mr-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.mr-modal-close:hover {
    color: #333;
}

.mr-modal-body {
    padding: 10px;
}

.mr-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #1d2327;
	font-size: 14px;
}

.header-print{
display: flex;
  justify-content: space-between;
  align-items: center;
}

.mr-form-group input,
.mr-form-group select,
.mr-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    border-radius: 6px !important;
    height: 38px;
}

.mr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mr-form-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;;
}

.mr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mr-btn-primary {
    background: #284B8C;
    color: white;
}

.mr-btn-primary:hover {
    background: #1a3366;
}

.mr-message {
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.mr-message.mr-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mr-message.mr-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mr-message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.mr-loading {
    text-align: center;
    padding: 20px;
}

.mr-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (max-width: 768px) {
    .mr-form-row {
        grid-template-columns: 1fr;
    }
    
    .mr-calendar-day {
        min-height:54px;
        font-size: 14px;
    }
    
    .mr-booking-form {
        padding: 20px;
        margin: 10px;
    }
}


.mr-toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mr-toast-overlay.show {
    opacity: 1;
}

.mr-toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 300px;
    max-width: 500px;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-direction: column;
}

button#mr-attendee-close {
    background: #24437e;
    color: #fff;
}                                                                                                                                                               

.mr-toast.show {
    transform: scale(1) translateY(0);
}

.mr-toast-success {
    border-left: 4px solid #10b981;
}

.mr-toast-error {
    border-left: 4px solid #ef4444;
}

.mr-toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.mr-toast-success .mr-toast-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.mr-history-filters {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	align-items: end;
	padding: 10px;
	background-color: #f5f5f5;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	margin-bottom: 10px;
}

#mr-history-search {
	height: 45px;
	border-radius: 6px;
}

#mr-history-to {
	height: 45px;
	border-radius: 6px;
}

#mr-history-from {
	height: 45px;
	border-radius: 6px;
}

.mr-history-filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.mr-history-filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.mr-history-filter-group input[type="date"],
.mr-history-filter-group input[type="text"],
.mr-history-filter-group select,
.mr-history-filter-search input[type="text"] {
    min-width: 160px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    height: 45px;
	border-radius: 6px;
    font-size: 13px;
}

.mr-history-filter-search {
    flex: 1 1 220px;
}

.mr-history-filter-search input[type="text"] {
    width: 100%;
}

.mr-history-filter-actions {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

@media (max-width: 768px) {
    .mr-history-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .mr-history-filter-group,
    .mr-history-filter-actions {
        width: 100%;
    }
}

.mr-toast-error .mr-toast-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.mr-toast-message {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.5;
    text-align: right;
    direction: rtl;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.mr-toast.show {
    animation: slideInFromTop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 768px) {
    .mr-toast {
        min-width: 280px;
        margin: 20px;
        padding: 20px 24px;
    }
    
    .mr-toast-message {
        font-size: 14px;
    }
    
    .mr-toast-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.nav-tab-wrapper {
	display: flex !important;
	justify-content: space-evenly;
}

.mr-booking-calendar-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mr-user-profile-section {
    background: #fff;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.mr-profile-header {
    margin-bottom: 10px;
}

.mr-profile-avatar {
    margin-left: 20px;
}

.mr-profile-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.default-avatar {
    width: 60px;
    height: 60px;
    background: #f0f0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #646970;
}

.mr-minutes-card {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 15px;
	background: #f9f9f9;
}

.mr-minutes-list {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 10px;
}

.mr-profile-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.mr-profile-info p {
    margin: 2px 0;
    color: #646970;
    font-size: 14px;
}

.mr-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.mr-stat-card {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    padding: 2px 5px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s;
}

.mr-stat-card:hover {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mr-stat-card.success {
    border-right: 4px solid #00a32a;
}

.mr-stat-card.warning {
    border-right: 4px solid #dba617;
}

.mr-stat-card.error {
    border-right: 4px solid #d63638;
}

.mr-stat-icon {
    margin-left: 15px;
    font-size: 24px;
    color: #646970;
}

.mr-stat-content h4 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #1d2327;
}

.mr-stat-content p {
    margin: 5px 0 0 0;
    color: #646970;
    font-size: 14px;
}

.mr-user-tabs {
	margin-bottom: 5px;
	background: #fff;
    padding: 5px;
    border-radius: 12px;
    background: #e3f2fd;  
}

.mr-calendar-container .tab-content {
    display: none;
    background: #fff;
    padding: 10px;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
}

.mr-calendar-container .tab-content.active {
    display: block;
}

.mr-tab-content {
    display: none;
    background: #fff;
    padding: 10px;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
}

.mr-tab-content.active {
    display: block;
}

.mr-bookings-list {
	display: grid;
	gap: 10px;
	grid-template-columns: auto auto auto;
}

.mr-calendar-container .tab-content h3 {
	color: rgb(40, 75, 140);
	padding-bottom: 10px;
}

.mr-booking-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #f9f9f9;
}

.mr-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mr-booking-header h4 {
    margin: 0;
    color: #1d2327;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-approved {
    background: #d1e7dd;
    color: #0f5132;
}

.status-pending {
    background: #fff3cd;
    color: #664d03;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.mr-booking-details p {
    margin: 5px 0;
    color: #646970;
}

.mr-favorite-rooms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.mr-favorite-room-card {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 20px;
	background: #f9f9f9;
	text-align: center;
	flex-direction: column;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mr-favorite-room-card h4 {
    margin: 0 0 10px 0;
    color: #1d2327;
}

.mr-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    transition: background-color 0.2s;
}

.mr-btn-primary {
	background: #284b8c;
	color: #fff;
	border-radius: 31px;
}


.mr-minutes-actions {
	text-align: left;
}

.mr-btn-primary:hover {
    background: #135e96;
}


.mr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.mr-modal-header {
    padding: 5px 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--kadec-logo-color);
}

.mr-modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.mr-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

.mr-modal-close:hover {
    color: #000;
}

.mr-modal-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: left;
}

.mr-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1d2327;
}

.mr-form-group input,
.mr-form-group select,
.mr-form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.mr-form-group textarea {
    resize: vertical;
}

.mr-form-row {
    display: flex;
    gap: 15px;
}

.mr-back-link {
	text-decoration: none;
	color: var(--kadec-logo-color);
	font-weight: 800;
}

.mr-form-row .mr-form-group {
    flex: 1;
}

.mr-form-actions {
    text-align: left;
}

.minutes-status {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.has-minutes {
    background: #d1e7dd;
    color: #0f5132;
}

.no-minutes {
    background: #f8d7da;
    color: #721c24;
}

.mr-minutes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mr-minutes-header h4 {
    margin: 0;
    color: #1d2327;
}

.mr-minutes-details p {
    margin: 5px 0;
    color: #646970;
}

.mr-booking-info h4 {
    margin: 0 0 10px 0;
    color: #1d2327;
}

.mr-minutes-content h5 {
    margin: 15px 0 5px 0;
    color: #1d2327;
}

.mr-minutes-content p {
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.mr-attendees-selector {
    position: relative;
}

.mr-attendees-search {
    position: relative;
}

.mr-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mr-search-result {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.mr-search-result:hover {
    background-color: #f5f5f5;
}

.mr-search-result:last-child {
    border-bottom: none;
}

.mr-selected-attendees {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 5px;
	margin-top: 5px;
}

.mr-selected-attendee {
	display: flex;
	align-items: center;
	background: #e3f2fd;
	padding: 2px 2px;
	border-radius: 7px;
	font-size: 14px;
}

.mr-remove-attendee {
    background: none;
    border: none;
    color: #666;
    margin-left: 5px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.mr-remove-attendee:hover {
    color: #d32f2f;
}

.status-pending { color: #ff9800; }
.status-approved { color: #4caf50; }
.status-rejected { color: #f44336; }
.status-cancelled { color: #9e9e9e; }

.mr-toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mr-toast-overlay.show {
    opacity: 1;
}

.mr-toast {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    max-width: 500px;
    transform: scale(0.8) translateY(-20px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mr-toast.show {
    transform: scale(1) translateY(0);
}

.mr-toast-success {
    border-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
}

.mr-toast-error {
    border-color: #f44336;
    background: linear-gradient(135deg, #ffeaea 0%, #ffebee 100%);
}

.mr-toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
}

.mr-toast-success .mr-toast-icon {
    background: #4caf50;
}

.mr-toast-error .mr-toast-icon {
    background: #f44336;
}

.mr-toast-message {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .mr-stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 3px !important;
    }

    .mr-stat-card{
        flex-direction: column;
        text-align: center;
        padding: 4px;
    }

    .mr-stat-icon {
	    margin-left: 0 !important;
        font-size: 16px !important;
    }
    
    .mr-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .mr-profile-avatar {
        margin: 0 0 15px 0;
    }
    
    .mr-favorite-rooms {
        grid-template-columns: 1fr;
    }
    
    .mr-bookings-list {
        grid-template-columns: 1fr;
    }
    
    .mr-minutes-list {
        grid-template-columns: 1fr;
    }
    
    .mr-form-row {
        flex-direction: column;
    }
    
    .mr-toast {
        min-width: 280px;
        margin: 20px;
        padding: 15px 20px;
    }
    
    .mr-toast-message {
        font-size: 14px;
    }
}

.mr-bookings-history {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mr-bookings-header {
    display: grid;
    grid-template-columns: 0.7fr 2fr 1.4fr 1.2fr 1.2fr 1fr 1fr;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: bold;
    color: #495057;
}

.mr-guest-row {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 1fr auto;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.mr-booking-row {
    display: grid;
    grid-template-columns: 0.7fr 2fr 1.4fr 1.2fr 1.2fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.mr-booking-row:hover {
    background-color: #f8f9fa;
}

.mr-guest-input {
    border: 1px solid #d7d7d7;
    border-radius: 8px !important;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
}

.mr-guest-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid #e1e5e9;
    margin-bottom: 10px;
}

.mr-guest-row .mr-btn {
    padding: 4px 8px;
    font-size: 12px;
}

.mr-guest-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 4px 4px;
}

.mr-guest-summary span {
	font-size: 13px;
	color: #555;
	padding-right: 3px;
}

.mr-guest-summary .mr-btn {
	padding: 2px 6px;
	font-size: 12px;
	border-radius: 6px;
	height: 30px;
}

.mr-attendees-groups {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row-reverse;
}

.mr-attendees-groups select {
    min-width: 210px;
    border-radius: 999px;
    border: 1px solid #d0d7de;
    padding: 0 10px;
    font-size: 13px;
}

.mr-attendees-groups .mr-btn {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
}

.mr-contact-groups-layout {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: 15px;
}

.mr-contact-groups-list {
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    padding: 10px;
}

.mr-contact-groups-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mr-contact-groups-header span {
    font-weight: 600;
    font-size: 14px;
}

.mr-contact-groups-header .mr-btn {
    padding: 4px 10px;
    font-size: 12px;
}

#mr-contact-groups-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 260px;
    overflow-y: auto;
}

.mr-contact-group-item {
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 4px;
    border: 1px solid transparent;
}

.mr-contact-group-item:hover {
    background: #e3f2fd;
    border-color: #b6d4fe;
}

.mr-contact-group-editor {
    background: #fdfdff;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
    padding: 10px 12px;
}

.mr-contact-group-editor .mr-form-group {
    margin-bottom: 8px;
}

.mr-contact-group-editor input[type="text"] {
    width: 100%;
    height: 38px;
    border-radius: 6px;
    border: 1px solid #d0d7de;
    padding: 0 10px;
    font-size: 13px;
}

.mr-contact-group-editor .mr-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    justify-content: space-between;
}

.mr-contact-group-editor .mr-btn {
    padding: 6px 6px;
    font-size: 12px;
}

.mr-attendee-chip {
    display: inline-flex;
    align-items: center;
    background: #e3f2fd;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin: 2px;
    gap: 4px;
}

.mr-remove-group-member {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.mr-remove-group-member:hover {
    color: #d32f2f;
}

.mr-btn-danger {
	background: #dc3545;
	color: #fff;
	border-radius: 35px !important;
}

.mr-btn-danger:hover {
    background: #c82333;
}

@media (max-width: 768px) {
    .mr-guest-row {
        grid-template-columns: 1fr;
    }
    
    .mr-contact-groups-layout {
        grid-template-columns: 1fr;
    }
}

.mr-booking-row:last-child {
    border-bottom: none;
}

.booking-col {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
}

.booking-col.title {
    font-weight: 500;
    color: #2c3e50;
}

.booking-col.room {
    color: #6c757d;
}

.booking-col.date {
    color: #495057;
}

.booking-col.time {
    color: #495057;

    font-size: 13px;
}

.booking-col.status {
    justify-content: center;
}

.booking-col.index {
    justify-content: center;
    font-weight: 500;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 80px;
}

.status-badge.status-approved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.status-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-badge.status-rejected {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .mr-bookings-header,
    .mr-booking-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .booking-col {
        padding: 8px 15px;
        border-bottom: 1px solid #f1f3f4;
    }

    .mr-modal-content{
        width: 100% !important;
    }
    
    .booking-col:before {
        content: attr(data-label);
        font-weight: bold;
        margin-left: 10px;
        color: #6c757d;
        min-width: 80px;
    }
    
    .mr-bookings-header {
        display: none;
    }
    
    .mr-booking-row {
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
    }
    
    .booking-col.title:before { content: "عنوان: "; }
    .booking-col.index:before { content: "ردیف: "; }
    .booking-col.room:before { content: "اتاق: "; }
    .booking-col.date:before { content: "تاریخ: "; }
    .booking-col.time:before { content: "زمان: "; }
    .booking-col.status:before { content: "وضعیت: "; }
    .booking-col.department:before { content: "واحد: "; }
}


.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    padding: 3px;
    background: #f8f9fa;
    border-radius: 5px;
}

.timeline-controls {
    display: flex;
    gap: 10px;
}

.timeline-legend {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid #ddd;
}

.legend-color.available {
    background-color: #e8f5e8;
    border-color: #4caf50;
}

.legend-color.booked {
    background-color: #ffcdd2;
    border-color: #f44336;
}

.legend-color.selected {
    background-color: #1976d2;
    border-color: #1976d2;
}

#mr-booking-description {
	min-height: 60px !important;
    resize: none;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 3px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    max-height: 350px;
    overflow-y: auto;
}

textarea, textarea[type="text"] {
	min-height: 7rem !important;
}

.time-slot {
    position: relative;
    padding: 6px 3px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    user-select: none;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.time-slot.available {
    background-color: #e8f5e8;
    color: #2e7d32;
    border-color: #4caf50;
}

.time-slot.available:hover {
    background-color: #c8e6c9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.time-slot.booked {
    background-color: #ffcdd2;
    color: #c62828;
    border-color: #f44336;
    cursor: not-allowed;
    position: relative;
    animation: pulse-booked 3s infinite;
}

@keyframes pulse-booked {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(244, 67, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
    }
}

.time-slot.booked:hover {
    background-color: #ffcdd2;
    transform: none;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.3);
}

.time-slot.selected {
    background-color: #1976d2;
    color: white;
    border-color: #1976d2;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.4);
}

.time-slot.in-range {
    background-color: #e3f2fd;
    color: #1976d2;
    border-color: #2196f3;
}

.lock-icon {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
    opacity: 0.8;
}

.selected-time-display {
    margin-top: 8px;
    padding: 5px;
    background: #e8f5e8;
    border-radius: 5px;
    border-left: 4px solid #4caf50;
}

.booked-times-info {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 10px;
}

.booked-times-info li:last-child {
    border-bottom: none;
}

.booked-times-info p {
    margin: 0;
    color: #6c757d;
    font-style: italic;
}

.booked-times-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.booked-times-info li {
    padding: 1px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #6c757d;
    font-size: 13px;
}

.booked-times-info h4 {
    color: #856404;
    font-size: 14px;
}

.selected-time-display p {
    margin: 0;
    color: #2e7d32;
    font-weight: 500;
}

.mr-user-signature-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.mr-user-signature-section h4 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 16px;
}

.mr-signature-display {
    text-align: center;
}

.mr-signature-display img {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: white;
}

.mr-no-signature {
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.mr-no-signature a {
    color: #007cba;
    text-decoration: none;
}

.mr-no-signature a:hover {
    text-decoration: underline;
}

.mr-day-bookings-list {
    direction: rtl;
}

.day-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 7px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.day-booking:hover {
    background: #e3f2fd;
    border-color: #2196f3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.day-booking .booking-time {
    font-weight: bold;
    color: #284B8C;
    min-width: 120px;
    font-size: 14px;
}

.day-booking .booking-title {
    flex: 1;
    font-weight: 400;
    color: #333;
    margin: 0 15px;
    font-size: 15px;
}

.day-booking .booking-room {
	color: #666;
	font-size: 13px;
	min-width: 100px;
	text-align: center;
	background: #e9ecef;
	padding: 4px 8px;
	border-radius: 4px;
	margin-left: 3px;
}

#mr-day-bookings-list {
	padding-bottom: 10px;
}

.day-booking .booking-status {
    min-width: 80px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}

.day-booking.booking-pending {
    border-right: 4px solid #ff9800;
}

.day-booking.booking-pending .booking-status {
    background: #ff9800;
}

.day-booking.booking-approved {
    border-right: 4px solid #4caf50;
}

.day-booking.booking-approved .booking-status {
    background: #4caf50;
}

.day-booking.booking-rejected {
    border-right: 4px solid #f44336;
}

.day-booking.booking-rejected .booking-status {
    background: #f44336;
}

@media (max-width: 768px) {
    .day-booking {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .timeline-header h4{
        font-size: 13px !important;
    }
    
    .day-booking .booking-time,
    .day-booking .booking-room,
    .day-booking .booking-status {
        min-width: auto;
        width: 100%;
    }
    
    .day-booking .booking-title {
        margin: 0;
        width: 100%;
    }
    
    .day-booking .booking-room,
    .day-booking .booking-status {
        text-align: right;
    }
}

.mr-day-bookings-list p {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0;
}


.mr-minutes-table-container {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mr-minutes-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}

.mr-minutes-table th,
.mr-minutes-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.mr-minutes-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.mr-minutes-row:hover {
    background: #f8f9fa;
}

.mr-booking-title {
    max-width: 200px;
}

.mr-title-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mr-title-text {
    font-weight: 600;
    color: #333;
}

.mr-title-desc {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.mr-room-name {
    font-weight: 500;
    color: #284B8C;
}

.mr-date-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	justify-content: start;
	align-items: start;
}

.mr-date {
    font-weight: 500;
}

.mr-time-range {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mr-time-separator {
    color: #666;
}

.mr-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.mr-status-completed {
    background: #d4edda;
    color: #155724;
}

.mr-status-pending {
    background: #fff3cd;
    color: #856404;
}

.mr-action-buttons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.mr-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mr-btn-view {
    background: #17a2b8;
    color: white;
}

.mr-btn-view:hover {
    background: #138496;
}

.mr-btn-edit {
    background: #ffc107;
    color: #212529;
}

.mr-btn-edit:hover {
    background: #e0a800;
}

.mr-btn-create {
    background: #28a745;
    color: white;
}

.mr-btn-create:hover {
    background: #218838;
}

.mr-btn-icon {
    font-size: 14px;
}

.mr-minutes-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.mr-minutes-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mr-minutes-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.mr-minutes-modal-header h3 {
    margin: 0;
    color: #284B8C;
    font-size: 18px;
}

.mr-minutes-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mr-minutes-modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.mr-minutes-modal-body {
    padding: 20px;
}

.mr-minutes-form-section {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.mr-attendee-chip {
	background: #f8f9fa;
	padding: 5px;
	border-radius: 35px;
	border: 1px solid #efefef;
	font-size: 14px;
}

.mr-minutes-form-section h4 {
    margin: 0 0 15px 0;
    color: #284B8C;
    font-size: 16px;
    border-bottom: 2px solid #284B8C;
    padding-bottom: 5px;
}

.mr-meeting-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.mr-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mr-info-label {
    font-weight: 600;
    color: #495057;
    font-size: 14px;
}

.mr-info-value {
    padding: 8px;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.mr-form-group {
    margin-bottom: 5px;
}

.mr-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.mr-form-group textarea,
.mr-form-group input,
.mr-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da !important;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.mr-form-group textarea:focus,
.mr-form-group input:focus,
.mr-form-group select:focus {
    outline: none;
    border-color: #284B8C;
    box-shadow: 0 0 0 2px rgba(40, 75, 140, 0.2);
}

.decisions-container,
.actions-container {
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    background: white;
}

.decision-item,
.action-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: #f8f9fa;
}

.action-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 10px;
    align-items: start;
    width: 100%;
}

.add-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.add-btn:hover {
    background: #218838;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    height: fit-content;
}

.remove-btn:hover {
    background: #c82333;
}

.attendees-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    background: white;
}

.attendee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: #f8f9fa;
}

.attendee-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
}

.attendee-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.mr-attendees-groups {
	display: flex;
	gap: 10px;
}

.mr-form-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 0px 10px 10px 10px;
}

.mr-btn-primary {
    background: #284B8C;
    color: white;
    padding: 4px 10px;
    border: none;
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mr-btn-primary:hover {
    background: #1a3366;
}

.mr-btn-secondary {
    background: #b22d30;
    color: white;
    padding: 4px 10px;
    border: none;
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mr-btn-secondary:hover {
    background: #545b62;
}

.mr-view-minutes-content {
    line-height: 1.6;
}

.mr-minutes-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #284B8C;
}

.mr-minutes-header h2 {
    color: #284B8C;
    margin-bottom: 10px;
}

.mr-minutes-section {
    margin-bottom: 25px;
}

.mr-minutes-section h4 {
    color: #284B8C;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.mr-decisions-list,
.mr-actions-list {
    list-style: none;
    padding: 0;
}

.mr-decisions-list li,
.mr-actions-list li {
    padding: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-right: 4px solid #284B8C;
    border-radius: 4px;
}

.mr-action-details {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.mr-attendees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.mr-attendee-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
}

.mr-attendee-status.present {
    background: #d4edda;
    color: #155724;
}

.mr-attendee-status.absent {
    background: #f8d7da;
    color: #721c24;
}

.mr-view-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mr-btn-print {
    background: #17a2b8;
    color: white;
}

.mr-btn-print:hover {
    background: #138496;
}

.mr-btn-sign {
    background: #fd7e14;
    color: white;
}

.mr-btn-sign:hover {
    background: #e8650e;
}

.mr-signature-section {
    text-align: center;
    padding: 20px;
}

.mr-signature-info {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-right: 4px solid #2196f3;
}

.mr-signature-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mr-signature-form input {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
}

.mr-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.mr-empty-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .mr-minutes-table-container {
        font-size: 12px;
    }
    
    .mr-action-buttons {
        flex-direction: column;
    }
    
    .mr-btn {
        justify-content: center;
        padding: 8px 12px;
    }
    
    .mr-minutes-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .mr-meeting-info {
        grid-template-columns: 1fr;
    }
    
    .action-fields {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .attendees-list {
        grid-template-columns: 1fr;
    }
    
    .mr-action-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mr-attendees-grid {
        grid-template-columns: 1fr;
    }
}

.attendees-selection {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.attendee-checkbox {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    background: white;
    border: 1px solid #dee2e6;
    font-size: 14px;
}

.attendee-checkbox:hover {
    background-color: #e7f3ff;
    border-color: #284B8C;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.attendee-checkbox input[type="checkbox"] {
    margin-left: 8px;
    margin-right: 0;
    width: auto;
    transform: scale(1.1);
}

.attendee-checkbox input[type="checkbox"]:checked + span {
    color: #284B8C;
    font-weight: 600;
}

#selected-attendees strong {
    color: #284B8C;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

#attendees-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

#attendees-list li {
    background: white;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #284B8C;
    color: #284B8C;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 1px 3px rgba(40, 75, 140, 0.1);
    transition: all 0.2s ease;
}

#attendees-list li:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(40, 75, 140, 0.2);
}

@media (max-width: 768px) {
    .attendees-selection {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        max-height: 200px;
        padding: 10px;
    }
    
    .attendee-checkbox {
        padding: 6px 8px;
        font-size: 13px;
    }
    
    #attendees-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .attendees-selection {
        grid-template-columns: 1fr;
        max-height: 180px;
    }
    
    .attendee-checkbox {
        padding: 8px;
        font-size: 12px;
    }
}

.mr-minutes-info-section,
.mr-minutes-content-section,
.mr-minutes-attendees-section,
.mr-minutes-decisions-section,
.mr-minutes-attachments-section,
.mr-minutes-signatures-section {
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #284B8C38;
  border-radius: 5px;
  background: #EDF7FF7A;
}

.cta-container-minutes{
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.cta-container-minutes button{
    width: 50%;
    text-align: center;
}

.mr-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mr-info-item {
    display: flex;
    flex-direction: column;
}

.mr-info-item label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.mr-content-display {
    padding: 15px;
    border-radius: 5px;
    min-height: 100px;
    white-space: pre-wrap;
}

.mr-attendees-display {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.mr-attendee-tag {
    background: #007cba;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
}

.mr-decisions-display {
	border-radius: 5px;
	margin-right: 5px;
}

.mr-decision-item {
	padding: 5px;
	border-right: 1px solid #007cba;
	border-radius: 0;
	margin-top: 10px;
	font-size: 14px;
}
.mr-decision-item h4 {
    margin: 0 0 10px 0;
    color: #007cba;
    font-size: 16px;
}

.mr-decision-item p {
	margin: 8px 0;
	line-height: 1.5;
	font-weight: 300;
}

.mr-decision-item strong {
    color: #333;
}

.mr-attachments-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mr-attachment-link {
    color: #007cba;
    text-decoration: none;
    padding: 8px 12px;
    background: white;
    border-radius: 5px;
    display: inline-block;
}

.mr-attachment-link:hover {
    background: #f0f8ff;
}

.mr-signatures-display {
    padding: 15px;
    border-radius: 5px;
    min-height: 60px;
    white-space: pre-wrap;
}

.mr-no-data {
    color: #666;
    font-style: italic;
}

.mr-modal-actions {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.mr-btn-locked {
    background-color: #dc3545;
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
}

.mr-btn-locked:hover {
    background-color: #c82333;
    opacity: 0.8;
}

.mr-btn-locked:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}


button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	background: rgb(178, 45, 48) !important;
	color: black;
}

.mr-status-badge.mr-status-locked {
    background-color: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.mr-locked-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #6c757d;
    font-size: 14px;
}

.mr-minutes-info-title {
    color:#284B8C;
    font-size:18px;
}

#sign-minutes-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.mr-locked-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    padding: 8px 12px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

#sign-minutes-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#sign-minutes-btn:disabled:hover {
    background-color: #007cba;
    transform: none;
}

.mr-info-item span {
	font-weight: 300;
}

.mr-locked-signatures {
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.mr-digital-signatures h5 {
    margin: 0 0 10px 0;
    color: #495057;
    font-size: 14px;
}

@media (max-width: 768px) {
    .signatures-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .signatures-grid {
        grid-template-columns: 1fr !important;
    }
}

#mr-toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mr-live-toast {
    background: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-20px);
    animation: mrLiveToastIn 0.3s forwards;
}

.mr-live-toast-message {
    flex: 1;
}

.mr-live-toast-close {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 18px;
    line-height: 1;
    padding: 0 6px;
    cursor: pointer;
    opacity: 0.9;
}

.mr-live-toast-close:hover {
    opacity: 1;
}

.mr-live-toast.success {
    background: #28a745;
}

.mr-live-toast.error {
    background: #dc3545;
}

@keyframes mrLiveToastIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mrLiveToastOut {
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.mr-live-toast.hiding {
    animation: mrLiveToastOut 0.3s forwards;
}
