/* Дополнительные стили */
.welcome-card, .auth-options {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.form-container, .auth-form {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.message {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.message.success {
    background: #dff6dd;
    color: #107c10;
}

.message.error {
    background: #fde7e9;
    color: #a4262c;
}

.message.warning {
    background: #fff4ce;
    color: #8e6b1f;
}

.dashboard-header {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.orders-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.order-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.order-header {
    background: #f8f8f8;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details {
    padding: 15px;
}