/* LSM Frontend Styles */
.lsm-booking-container {
    max-width: 600px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lsm-form .form-group {
    margin-bottom: 25px;
}

.lsm-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.lsm-form input,
.lsm-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.lsm-form input:focus {
    border-color: #2271b1;
    outline: none;
}

.lsm-button {
    background: #2271b1;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.lsm-button:hover {
    background: #135e96;
}

.lsm-portal {
    display: flex;
    gap: 30px;
}

.lsm-portal-nav {
    width: 200px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.lsm-portal-nav ul {
    list-style: none;
    padding: 0;
}

.lsm-portal-nav li {
    margin-bottom: 10px;
}

.lsm-portal-nav a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.lsm-portal-nav a:hover {
    background: #e9ecef;
    color: #2271b1;
}

/* New Tablet/Portal Styles */
.lsm-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.lsm-table th,
.lsm-table td {
    border-bottom: 1px solid #eee;
    padding: 12px;
    text-align: left;
}

.lsm-tab-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #f0f0f0;
}

.lsm-tab-btn.active {
    background: #2271b1;
    color: #fff;
}

.lsm-stat {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}