/* 存储空间页面基础样式 */

/* 页面布局 */
.storage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* 返回按钮样式 */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #304357;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #1e2a38;
    transform: translateX(-2px);
}

.back-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.back-button.home {
    background: #2751a0;
}

.back-button.home:hover {
    background: #1a367a;
}

.back-button.user {
    background: #2751a0;
}

.back-button.user:hover {
    background: #1a367a;
}

.back-button.submission {
    background: #2751a0;
}

.back-button.submission:hover {
    background: #1a367a;
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
    .back-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .back-button {
        justify-content: center;
        text-align: center;
        padding: 8px 12px;
        font-size: 12px;
        min-width: 0;
        flex: 1;
    }
} 