
.my-custom-header {
font-size: 24px;
font-weight: bold;
}

.my-custom-text {
font-size: 18px;
}

.my-custom-row {
display: flex;
flex-wrap: wrap;
gap: 16px;
}

.my-custom-col {
flex: 1 1 300px;
}

.my-custom-form-floating {
position: relative;
margin-bottom: 1rem;
}

.my-custom-input,
.my-custom-select,
.my-custom-textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}

.my-custom-input:focus,
.my-custom-select:focus,
.my-custom-textarea:focus {
border-color: #007bff;
outline: none;
}

.my-custom-checkbox-container {
margin: 20px 0;
}

.my-custom-checkbox-label {
display: flex;
align-items: center;
}

.my-custom-checkbox {
margin-right: 10px;
}

.my-custom-button {
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}

.my-custom-button:hover {
background-color: #0056b3;
}

.my-custom-select-container {
margin-bottom: 1rem;
}

