/* Shop Explorer Frontend Dashboard Styles */

.shop-explorer-login-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.shop-explorer-login-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.shop-explorer-login-form h2 {
    margin: 0 0 30px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.error-message {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    color: #c33;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-container {
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 14px;
}

.login-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.login-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-remember {
    margin-bottom: 20px;
}

.login-remember label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.login-remember input[type="checkbox"] {
    margin-right: 8px;
}

.login-submit {
    margin-bottom: 20px;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.login-button:active {
    transform: translateY(0);
}

.login-help {
    text-align: center;
    margin: 0;
}

.login-help a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.login-help a:hover {
    text-decoration: underline;
}

/* Frontend Dashboard Root */
#shopexplore_dashboard {
    min-height: 100vh;
}

/* Hide admin bar margin on frontend dashboard */
body.page-template-shop-explorer-dashboard {
    margin-top: 0 !important;
}

body.page-template-shop-explorer-dashboard #wpadminbar {
    display: none !important;
}

/* Full screen dashboard */
.page-template-shop-explorer-dashboard #shopexplore_dashboard {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background: #f5f5f5;
}

/* Menu item styling */
.menu-item-shop-explorer-dashboard a {
    display: flex;
    align-items: center;
    gap: 8px;
}
