/* Accounts Page Specific Styles */

/* Page specific buttons */
.btn-create {
    background: #28a745;
    color: white;
}

.btn-create:hover {
    background: #218838;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background: #e3f2fd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

/* Page specific table styles */
th { 
    background-color: #28a745; 
}

th:last-child {
    background-color: #28a745;
}

tr:hover td:last-child,
tr:hover { 
    background-color: #e8f5e8; 
}

.level { 
    text-align: center; 
    font-weight: bold;
    color: #007bff;
}

.price { 
    text-align: right; 
    color: #28a745; 
    font-weight: bold; 
}

.coin-amount { 
    text-align: right; 
    font-weight: bold;
    color: #ffc107;
}

.status { 
    color: white; 
    padding: 2px 6px; 
    border-radius: 3px; 
    font-size: 0.8em; 
    font-weight: bold;
}

.status.ok {
    background: #28a745; 
}

.status.crash {
    background: #dc3545; 
}

.status.weak_pickpouch {
    background: #ffc107; 
    color: #212529;
}

.status.pouch200 {
    background: #17a2b8; 
}

.status.bigpouch_withview {
    background: #ffc107; 
    color: #212529;
}

.status.bigpouch_noview {
    background: #28a745; 
}

/* Page specific focus color */
.form-group input:focus,
.form-group select:focus {
    border-color: #28a745;
    box-shadow: 0 0 5px rgba(40,167,69,0.3);
}

/* Page specific spinner color */
.spinner {
    border-top: 4px solid #28a745;
}

/* Page specific responsive adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Accounts page specific modal size */
.large-modal {
    max-width: 800px;
}