/*
=============================================================================
CMMS CORE - CUSTOMER PORTAL CUSTOM CSS
=============================================================================

This file contains custom CSS for the CUSTOMER PORTAL ONLY:
- Customer Portal Pages
- Public Web Pages
- Issue Submission Forms
- Work Request Tracking Pages
- Portal Navigation

NOT applied to:
- Desk Interface (staff)
- Admin Forms
- Backend Reports

Location: /home/frappe/frappe-bench/apps/cmms_core/cmms_core/public/css/custom_portal.css

How to Use:
1. Add your portal-specific CSS rules below
2. Run: bench build --app cmms_core
3. Run: bench clear-cache
4. Refresh browser (Ctrl+Shift+R)

=============================================================================
*/

/* 
=============================================================================
PORTAL INTERFACE RECOMMENDATIONS
=============================================================================

Focus on:
- Brand consistency and visual appeal
- Clear call-to-action buttons
- Simple, intuitive navigation
- Mobile responsiveness
- Customer-friendly language
- Trust indicators
- Easy-to-read content

Avoid:
- Technical jargon visibility
- Complex admin features
- Too many options/overwhelming UI
- Internal status codes

=============================================================================
*/

/* 
=============================================================================
EXAMPLE PORTAL CUSTOMIZATIONS
=============================================================================
*/

/* Example: Branded portal header */
/*
.web-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3a6b 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.web-header .navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}
*/

/* Example: Friendly navigation menu */
/*
.web-sidebar {
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.web-sidebar .sidebar-menu li a {
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.web-sidebar .sidebar-menu li a:hover {
    background-color: #e9ecef;
    padding-left: 20px;
}
*/

/* Example: Prominent call-to-action buttons */
/*
.web-page .btn-primary {
    background-color: #2c5aa0;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(44, 90, 160, 0.2);
    transition: all 0.3s ease;
}

.web-page .btn-primary:hover {
    background-color: #1a3a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(44, 90, 160, 0.3);
}
*/

/* Example: Welcoming portal home page */
/*
.web-page .hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
}
*/

/* Example: Friendly card styling */
/*
.web-page .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.web-page .card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
*/

/* Example: Clear status indicators for customers */
/*
.portal-list-item .badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.portal-list-item .badge.status-open {
    background-color: #ffc107;
    color: #000;
}

.portal-list-item .badge.status-completed {
    background-color: #28a745;
    color: white;
}
*/

/* Example: Mobile-friendly portal menu */
/*
@media (max-width: 768px) {
    .web-header .navbar-brand {
        font-size: 1.2rem;
    }
    
    .web-page .btn-primary {
        width: 100%;
        margin-bottom: 10px;
    }
}
*/

/* Example: Improve form accessibility */
/*
.web-page .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
}

.web-page .form-control:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.15);
}

.web-page .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}
*/

/* Example: Friendly footer */
/*
.web-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    margin-top: 60px;
}

.web-footer a {
    color: #3498db;
}
*/

/* Example: Helpful tooltips and hints */
/*
.help-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}
*/


/* 
=============================================================================
YOUR CUSTOM PORTAL CSS - ADD BELOW THIS LINE
=============================================================================
*/

/* Add your portal-specific CSS here */


/* Login Page Dark Theme */
.for-login .page-card, 
.for-forgot .page-card, 
.for-login-with-email-link .page-card, 
.for-signup .page-card, 
.for-email-login .page-card {
    background-color: lightgray !important;
    border: none !important;
}
.navbar{
    background: #487f48 !important;
}
.navbar-brand b{
    color: white !important;
}
.nav-link{
    color: white !important;
}