#mk-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999990;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.mk-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#mk-close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d32f2f;
    color: #fff;
    border: 2px solid #fff;
    font-size: 24px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s, background 0.2s;
}

#mk-close-popup:hover {
    background: #b71c1c;
    transform: scale(1.1);
}

.mk-single-container {
    max-width: 1000px;
    margin: 0 auto;
    direction: rtl;
    font-family: Tahoma, Arial, sans-serif;
}

.mk-featured-image {
    text-align: center;
    margin-bottom: 25px;
}
.mk-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mk-details-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	font-family: "El Messiri";
}
.mk-details-table th, 
.mk-details-table td {
    padding: 15px 20px;
    text-align: right;
    border-bottom: 1px solid #eee;
}
.mk-details-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
    width: 30%;
}

.mk-details-table th:hover {
background: #8D6D37;
color:  white;
}

.mk-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.mk-btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
	font-family: "El Messiri";
}

.mk-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#mk-browse-btn {
    background: #8D6D37 !important;
}

.mk-btn.down {
    background: #322212;
}

.mk-btn .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}