/* ==============================
   SmartCargo Shipping Styles
   Dark Theme (Red Accent)
   ============================== */

/* Form Container */
.smartcargo-form {
    background: #1c1c1c;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

/* Result & Booking Sections */
.smartcargo-result{
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    margin: 25px auto;
    padding: 20px 25px;
    background: #1c1c1c;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
    color: #ffffff;
}
.smartcargo-booking {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    margin: 25px auto;
    padding: 20px 25px;
    background: #1c1c1c;
    border-radius: 12px;
	max-width: 800px;
    width: 100%;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
    color: #ffffff;
}
/* Headings */
.smartcargo-form h2,
.smartcargo-result h2,
.smartcargo-booking h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e50914;
    border-bottom: 2px solid #e50914;
    padding-bottom: 8px;
}

/* Labels */
.smartcargo-form label,
.smartcargo-booking label {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: #ffffff;
}

/* Inputs & Selects */
.smartcargo-form input[type="text"],
.smartcargo-form input[type="number"],
.smartcargo-booking input[type="text"],
.smartcargo-booking textarea,
.smartcargo-form select,
.smartcargo-booking select {
    width: 100%;
    padding: 10px 12px;
    margin-top: 6px;
    background: #2c2c2c;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 14px;
    transition: border 0.2s ease, background 0.2s ease;
}

.smartcargo-form input:focus,
.smartcargo-booking input:focus,
.smartcargo-booking textarea:focus,
.smartcargo-form select:focus {
    border-color: #e50914;
    background: #333333;
    outline: none;
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.3);
}

/* Buttons */
.smartcargo-form button,
.smartcargo-result .booking-btn,
.smartcargo-booking input[type="submit"] {
    margin-top: 18px;
    background: #e50914;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.smartcargo-form button:hover,
.smartcargo-result .booking-btn:hover,
.smartcargo-booking input[type="submit"]:hover {
    background: #b20710;
}

/* Shipping List */
.smartcargo-result ul.shipping-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.smartcargo-result li.shipping-item {
    background: #2c2c2c;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

/* Booking Info */
.smartcargo-booking p {
    margin: 8px 0;
    font-size: 14px;
    color: #ccc;
}

.smartcargo-booking p strong {
    color: #ffffff;
}

/* Success Message */
.smartcargo-booking p.success,
.smartcargo-form p.success {
    color: #0f0;
    background: #1a331a;
    border: 1px solid #0f0;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: 15px;
}
