/* เพิ่มพื้นหลังให้กับ body */
body {
    background-image: url('../image/backgound_index.png'); /* พื้นหลัง */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* เพิ่มสไตล์ให้กับ container หลัก */
.container {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

/* เพิ่มการจัดระยะห่างและสไตล์ให้กับการ์ด */
.card {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-weight: bold;
}

.card-text {
    margin-bottom: 15px;
}

/* สไตล์ปุ่มในการ์ด */
.btn-info {
    background-color: #017cff;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 15px;
}

.btn-info:hover {
    background-color: #005bb5;
}

/* ปุ่มยืนยัน */
.btn-success {
    background-color: #28a745;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 15px;
}

.btn-success:hover {
    background-color: #218838;
}

/* สไตล์ Modal */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
}

.modal-footer {
    background-color: #f7f7f7;
    border-top: 1px solid #ddd;
}

.modal-title {
    font-weight: bold;
}

.modal-body p {
    margin-bottom: 15px;
}

/* ปรับสไตล์ปุ่มรีวิว */
.btn-warning {
    background-color: #ffc107;
    color: white;
    border-radius: 10px;
    padding: 8px 15px;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e0a800;
}

/* เพิ่มสไตล์ให้กับฟอร์มรีวิว */
.form-label {
    font-weight: bold;
}

.form-control {
    border-radius: 10px;
    padding: 10px;
}

.form-select {
    border-radius: 10px;
    padding: 10px;
}

/* เพิ่มสไตล์ให้กับภาพใน Modal */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* user.css */
body {
    background-color: #f4f4f9; /* สีพื้นหลัง */
}

h1 {
    color: #438443; /* เปลี่ยนสีของหัวข้อ */
    font-family: 'Arial', sans-serif;
}

.about-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-list {
    line-height: 1.8;
}

.about-list li {
    font-size: 1.1rem;
}

a {
    color: #438443;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

iframe {
    max-width: 100%;
    border-radius: 10px;
}
/* form กำหนดระยะห่าง */
form label {
    font-weight: bold;
    margin-bottom: 5px;
}

form input, form select, form textarea {
    margin-bottom: 15px;
}

/* เพิ่มการ์ดสวยๆ ตอนเลือก */
.content-container form, .content-container .alert {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ปรับปุ่มใหญ่ */
.btn-lg-custom {
    padding: 12px 24px;
    font-size: 1.25rem;
}
/* เพิ่มช่องว่างสำหรับรายการเรียกรถและประวัติ */
.placeholder {
    background-color: #f0f0f0; /* สีเทาจาง */
    height: 150px; /* ความสูงที่เหมาะสม */
    border-radius: 10px;
    margin-bottom: 20px;
}

