﻿.account-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .account-container h1 {
        color: #333;
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

.account-form .form-group {
    margin-bottom: 15px;
}

.account-form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 600;
}

.account-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.account-form .checkbox {
    display: flex;
    align-items: center;
}

    .account-form .checkbox input {
        width: auto;
        margin-right: 8px;
    }

    .account-form .checkbox label {
        display: inline;
        font-weight: normal;
    }

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #cc0000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-submit:hover {
        background: #990000;
    }

.validation-summary {
    background: #ffeeee;
    border-left: 3px solid #cc0000;
    padding: 10px;
    margin-bottom: 15px;
    color: #cc0000;
}

.account-link {
    text-align: center;
    margin-top: 15px;
}

    .account-link a {
        color: #cc0000;
        text-decoration: none;
    }

        .account-link a:hover {
            text-decoration: underline;
        }

.success-message {
    background: #d4edda;
    border-left: 3px solid #28a745;
    padding: 10px;
    margin-bottom: 15px;
    color: #155724;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

    .orders-table th,
    .orders-table td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: left;
    }

    .orders-table th {
        background: #f5f5f5;
        font-weight: bold;
    }

    .orders-table tr:hover {
        background: #f9f9f9;
    }
