/* VGRD External Links Plugin Styles */

.vgrd-external-link {
    position: relative;
}

.vgrd-external-link::after {
    content: "↗";
    display: inline-block;
    margin-left: 4px;
    font-size: 0.8em;
    color: #666;
    text-decoration: none;
}

.vgrd-external-link:hover::after {
    color: #333;
}

/* Modal Styles */
.vgrd-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.vgrd-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.vgrd-modal-buttons {
    margin-top: 20px;
}

.vgrd-modal-btn {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.vgrd-modal-btn-cancel {
    background-color: #f44336;
    color: white;
}

.vgrd-modal-btn-ok {
    background-color: #4CAF50;
    color: white;
}

.vgrd-modal-btn:hover {
    opacity: 0.8;
}

