/* 
 * SaveVault - Main CSS
 * Additional styling for the website
 */

/* Additional Auth Page Styles */
.auth-container {
    max-width: 480px;
    margin: 2rem auto;
    padding: 0 15px;
}

/* Activity feed styling for profile page */
.activity-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.activity-date {
    font-size: 14px;
    color: var(--text-secondary-color);
    margin-bottom: 4px;
}

.activity-content {
    font-size: 15px;
}

.activity-item:last-child {
    border-bottom: none;
}

/* Device item styling */
.device-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.device-item:last-child {
    border-bottom: none;
}

.device-icon {
    font-size: 24px;
    margin-right: 15px;
}

.device-info {
    flex: 1;
}

.device-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.device-details {
    font-size: 14px;
    color: var(--text-secondary-color);
}

.device-actions {
    margin-left: 10px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

/* Button hover effect */
.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Button active effect */
.btn:active {
    transform: translateY(1px);
}

/* Responsive improvements */
@media (max-width: 480px) {
    .profile-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .tab-btn {
        padding: 12px 16px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
