/* PokoAdmin Custom Styles */

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    height: 100%;
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-card {
    max-width: 420px;
    width: 100%;
}

/* Table Styles */
.table-actions {
    white-space: nowrap;
}

.table-actions .btn {
    margin-right: 0.25rem;
}

/* Card Styles */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
}

/* Validation Styles */
.field-validation-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.input-validation-error {
    border-color: #dc3545;
}

/* Badge Styles */
.badge-status-active {
    background-color: #28a745;
}

.badge-status-inactive {
    background-color: #6c757d;
}

/* Utilities */
.text-muted-light {
    color: #6c757d;
}

/* Search Box */
.search-box {
    max-width: 300px;
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Feature List */
.feature-list {
    max-height: 400px;
    overflow-y: auto;
}

.feature-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.feature-item:last-child {
    border-bottom: none;
}
