/* Style the logo upload container */
.aiols-logo-upload-container {
    margin-bottom: 20px;
}

/* Style the buttons */
.aiols-logo-upload-container .button {
    margin-right: 10px;
}

/* Style the "Remove Logo" button */
.aiols-logo-upload-container .button-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.aiols-logo-upload-container .button-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Style the logo preview */
.aiols-logo-upload-container img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    border: 1px solid #ddd;
    padding: 5px;
    background-color: #f9f9f9;
}

/* Admin Styles for All in One Login Styler */
.aiols-admin-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.aiols-admin-main {
    flex: 2;
    min-width: 0;
}

.aiols-sidebar {
    flex: 1;
    max-width: 400px;
    position: sticky;
    top: 30px;
}

.aiols-store-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.aiols-store-box h3 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.aiols-store-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.aiols-store-box .button {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aiols-store-box .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 782px) {
    .aiols-admin-container {
        flex-direction: column;
    }

    .aiols-sidebar {
        max-width: 100%;
        width: 100%;
        position: static;
    }
}