/**
 * Content Locker Main Frontend Styles
 */

/* Common styles for all locker types */
.lockerco-container {
    text-align: center;
    padding: 3rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 2rem 0;
    background-color: #f9f9f9;
}

.lockerco-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lockerco-icon .dashicons {
    width: auto;
    height: auto;
    font-size: 3rem;
}

.lockerco-message {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.lockerco-button {
    background-color: #2271b1;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.lockerco-button:hover {
    background-color: #135e96;
}

/* Modal styles */
.lockerco-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    max-width:100%;
}

.lockerco-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    max-width: 400px;
    width: 90%;
}

.lockerco-modal-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.lockerco-modal-input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.lockerco-modal-buttons {
    display: flex;
    justify-content: space-between;
}

.lockerco-modal-buttons button {
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
}

.lockerco-modal-unlock {
    background-color: #2271b1;
    color: white;
    border: none;
}

.lockerco-modal-close {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.lockerco-modal-error {
    color: red;
    margin-bottom: 1rem;
    display: none;
}