.purchase-request-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.purchase-request-form-container h1 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.form-section h2 {
    margin-bottom: 20px;
    color: #444;
    font-size: 1.2em;
}

.form-row {
    margin-bottom: 15px;
}

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

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-row textarea {
    min-height: 100px;
    resize: vertical;
}

.required {
    color: #e74c3c;
    margin-left: 4px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.button:hover {
    background: #005177;
}

.button-secondary {
    background: #6c757d;
}

.button-secondary:hover {
    background: #5a6268;
}

.purchase-request-success {
    padding: 20px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
    margin-bottom: 20px;
}

.purchase-request-error {
    padding: 20px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    margin-bottom: 20px;
}

.request-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.info-label {
    display: block;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    color: #333;
}

.agreement-text {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    line-height: 1.6;
}

.agreement-text ol {
    margin-left: 20px;
}

.agreement-text li {
    margin-bottom: 10px;
}

.checkbox-row {
    margin: 20px 0;
}

.checkbox-row input[type="checkbox"] {
    margin-right: 10px;
}

.request-actions {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .purchase-request-form-container {
        padding: 15px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .request-info-grid {
        grid-template-columns: 1fr;
    }
    
    .button {
        width: 100%;
        margin-bottom: 10px;
    }
}