.custom-inputs input[type="checkbox"] + span:before {
    border-color: #5e5e5e !important;
    background-color: white;
}

.card {
    height: 100%;
}

code {
    padding-left: 0;
    color: black;
    background-color: transparent;
}

.is-light-blue {
    background-color: #e5f9ff;
}

#test-meeting-form {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#test-meeting-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

#test-meeting-form .card-header {
    background-color: #363636;
    color: #fde3ab;
    padding: 1rem;
}

#test-meeting-form .card-header-title {
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
}

#test-meeting-form .card-content {
    padding: 1.5rem;
}

#test-meeting-form .select select {
    border: 2px solid #363636;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s;
}

#test-meeting-form .select select:hover {
    border-color: #fde3ab;
}

#test-meeting-form .message {
    background: #fdf7e3;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

#test-meeting-form .buttons .button {
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

#test-meeting-form img {
    padding-left: 20px;
    padding-right: 20px;
}

#confirmation-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #363636;
    border-radius: 8px;
    background-color: #fdf7e3;
}

#confirmation-container .input {
    border: 2px solid #363636;
    border-radius: 8px;
    transition: border-color 0.2s;
}

#confirmation-container .input:focus {
    border-color: #fde3ab;
    outline: none;
}

#test-meeting-form .field label, #confirmation-container label, #confirmation-container span {
    font-size: 1rem;
    font-weight: bold;
    color: #363636;
}

.interactive-box {
    background-color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.interactive-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.interactive-box:after {
    content: '';
    background: rgba(54, 54, 54, 0.1);
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    left: -100%;
    transition: all 0.5s ease-in-out;
}

.interactive-box:hover:after {
    left: 100%;
    right: 0;
}

.icon {
    margin-right: 10px;
}

.checkbox.cross input[type="checkbox"] {
    display: none;
}

.checkbox .cross-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #363636;
    border-radius: 3px;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    font-weight: bold;
    color: transparent;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox input[type="checkbox"]:checked + .cross-checkbox::after {
    content: "✗";
    color: #363636;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
