* { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, sans-serif; }
body { background-color: #f4f4f9; color: #333; display: flex; flex-direction: column; min-height: 100vh; }

/* Dynamic Banner Header    relative*/
.hero-banner { position: relative; height: 250px; overflow: hidden; }
.hero-banner .slide { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-banner .slide.active { opacity: 1; }
.hero-overlay { position: absolute; top:53px; left:2px; width:100%; height:100%; background: rgba(0,0,0,0.5); display:flex; align-items:center; justify-content:center; color:white; }
.hero-overdo  { position: absolute; top:100px; left:0px;	width:100%;	height:205px; background: rgba(0,0,0,0.5); display:flex; align-items:center; justify-content:center; color:white; }

/* Main layout */
.container { width: 90%; max-width: 900px; margin: 20px auto; flex: 10; }
.search-box, .owner-section { background: white; padding: 25px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 20px; }
.hidden { display: none !important; }

/* Forms */
form { display: flex; flex-direction: column; gap: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid .full-width { grid-column: span 2; }
input, textarea, button { width: 100%; padding: 10px; border: 1fr solid #ccc; border-radius: 4px; }
button { background: #0056b3; color: white; border: none; cursor: pointer; font-weight: bold; }
button:hover { background: #003d80; }
.btn-success { background: #28a745; }
.btn-success:hover { background: #1e7e34; }

/* Modal */
.modal { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); display:flex; align-items:center; justify-content:center; }
.modal-content { background: white; padding: 30px; border-radius: 8px; max-width: 500px; width: 90%; position: relative; }
.close-btn { position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; }
.dealership-list { list-style: none; margin-top: 10px; }
.dealership-list li { padding: 10px 0; border-bottom: 1px solid #ddd; }

/* Footer */
footer { background: #222; color: white; text-align: center; padding: 20px; margin-top: auto; }
.social-links { display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
.img-btn img { height: 45px; border-radius: 5px; transition: transform 0.2s; }
.img-btn img:hover { transform: scale(1.08); }

.alert-warning { color: #856404; background-color: #fff3cd; padding: 10px; border-radius: 4px; }
.alert-danger { color: #721c24; background-color: #f8d7da; padding: 10px; border-radius: 4px; }
.alert-aceptado { color: #0c5460; background-color: #d1ecf1; padding: 10px; border-radius: 4px;}
