/* Sessions page specific styles */

.page-header {
    background: white;
    border-radius: 0;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.page-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.page-header p {
    color: #666;
    font-size: 16px;
}

.sessions-card {
    background: white;
    border-radius: 0;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sessions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.sessions-header h3 {
    font-size: 20px;
}

.btn-revoke-all {
    padding: 8px 16px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-revoke-all:hover {
    background: #c82333;
}

.session-item {
    padding: 16px;
    border: 1px solid #e1e8ed;
    border-radius: 0;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.2s;
}

.session-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.session-item.current {
    border-color: #667eea;
    background: #f8f9ff;
}

.session-info {
    flex: 1;
}

.session-device {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.session-details {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

.session-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.badge-current {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-remembered {
    background: #e3f2fd;
    color: #1565c0;
}

.btn-revoke {
    padding: 6px 12px;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-revoke:hover {
    background: #5a6268;
}

.btn-revoke:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
