#fastorder-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.fastorder-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
}

.fastorder-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.fastorder-close:hover {
    color: black;
}

.fastorder-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.fastorder-section h3 {
    margin-top: 0;
}

.fastorder-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.fastorder-info-item {
    margin-bottom: 8px;
}

.fastorder-carriers, .fastorder-payments {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.fastorder-carrier, .fastorder-payment {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.fastorder-carrier:hover, .fastorder-payment:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.fastorder-carrier.active, .fastorder-payment.active {
    border-color: #2ecc71;
    background-color: #e8f8f0;
}

.fastorder-submit {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.fastorder-submit:hover {
    background-color: #27ae60;
}