.ls-form {
    display: grid;
}

.ls-cases-form {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-top: 30px;
}

.ls-form-footer {
    grid-column: 1/3;
}

.ls-form-col .ls-form-row:not(:last-child) {
    margin-bottom: 20px;
}

.ls-form-row label {
    display: block;
    width: 100%;
}

.ls-form-row input[type="text"],
.ls-form-row input[type="tel"],
.ls-form-row input[type="email"],
.ls-form-row textarea {
    width: 100%;
    padding: 10px 15px;
}

.ls-form-row textarea {
    resize: none;
    line-height: 1.6;
}

.ls-cases-form textarea {
    height: 250px;
}

.ls-form-successes,
.ls-form-errors {
    margin-top: 30px;
}

.ls-form-successes ul,
.ls-form-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ls-form-successes ul li,
.ls-form-errors ul li {
    padding: 15px 15px 10px 15px;
    line-height: 1.2;
}

.ls-form-errors ul li {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.ls-form-successes ul li {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.custom-login {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.custom-login .login-buttons {
    display: flex;
    column-gap: 1rem;
}

.login-buttons .button {
    background-color: #b2cd6e;
    color: #ffffff;
    border-radius: 5px;
    padding: 8px 15px 6px 15px;
    flex: 1;
    text-align: center;
}

.liquigas-delivery-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    max-height: 400px;
    overflow-y: auto;
}

.liquigas-delivery-slot {
    padding: 15px 20px 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
    text-align: center;
    line-height: 1.2em;
}

.liquigas-delivery-slot:hover {
    border-color: #b2cd6e;
    background: #f5f5f5;
}

.liquigas-delivery-slot.selected {
    border-color: #b2cd6e;
    background: #b2cd6e;
}

.liquigas-delivery-slot-loading {
    padding: 20px;
    text-align: center;
    width: 100%;
    color: #666;
}

.liquigas-delivery-slots-error {
    padding: 15px 15px 10px 15px;
    background: #ffebee;
    line-height: 1.2em;
    border: 1px solid #ffcdd2;
    border-radius: 0;
    color: #c62828;
    margin: 10px 0;
    width: 100%;
} 