/* Simple Modal Styles */
.simple-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.simple-modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.simple-modal-content h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    color: #272727;
}

.simple-modal-content p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
}

.simple-modal-content input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.simple-modal-content input:focus {
    outline: none;
    border-color: #EDD2A1;
}

.simple-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.simple-modal-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.btn-cancel:hover {
    background: #e0e0e0;
}

.btn-ok {
    background: #272727;
    color: white;
}

.btn-ok:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .simple-modal-content {
        padding: 20px;
        max-width: 90%;
    }
    
    .simple-modal-buttons {
        flex-direction: column-reverse;
    }
    
    .simple-modal-buttons button {
        width: 100%;
    }
}
