#rip-button {
    display: block;
    margin: 300px auto;
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}
#rip-button:hover {
    background-color: #45a049;
}

#rip-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#rip-popup {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 50%;
    max-height: 90%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

#rip-popup img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.rip-download-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-right: 10px;
}

#rip-close-popup {
    padding: 10px 20px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
