.mir-image-wrapper {
    max-width: 100%;
}

.mir-info-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-family: serif;
    font-style: italic;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    transition: background-color 0.3s ease;
    user-select: none;
}

.mir-info-icon:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.mir-content-label {
    position: absolute;
    bottom: 10px;
    left: 40px; /* 10px (initial left) + 24px (icon width) + 6px (gap) */
    background-color: #590500;
    color: #fff;
    padding: 0 10px;
    height: 24px;
    line-height: 24px;
    border-radius: 12px;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: bold;
    z-index: 100;
    user-select: none;
    text-transform: uppercase;
}

.mir-shortcode-icon {
    position: relative !important;
    display: inline-block;
    top: 0;
    background-color: dimgrey;
}
.mir-shortcode-icon:hover {
    background-color: rgba(201, 201, 201, 0.9);
    color: #000;
}

.mir-shortcode-container .mir-content-label {
    position: relative !important;
    display: inline-block;
    bottom: 0;
    left: 15px;
}

/* Success Toast Notification */
.mir-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    font-family: sans-serif;
    animation: mirFadeInDown 0.5s ease-out;
}

@keyframes mirFadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.mir-toast-message {
    margin-right: 15px;
    font-weight: 500;
}

.mir-toast-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mir-toast-close:hover {
    color: #e0e0e0;
}

/* Report Form Styling */
.mir-report-form-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.mir-form-group {
    margin-bottom: 15px;
}

.mir-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.mir-form-group select,
.mir-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.mir-submit-btn {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.mir-submit-btn:hover {
    background-color: #005177;
}