/*
Theme Name:   Twenty Twenty-Five Child
Template:     twentytwentyfive
Author:       D
Version:      1.0.0
Description:  Child theme for Twenty Twenty-Five
*/


/* Bootstrap-like input field */
.form-control-custom {
    display: block!important;
    width: 100%!important;
    padding: 0.375rem 0.75rem!important;
    font-size: 1rem!important;
    font-weight: 400!important;
    line-height: 1.5!important;
    color: #212529!important;
    background-color: #fff!important;
    background-clip: padding-box!important;
    border: 1px solid #ced4da!important;
    appearance: none!important;
    border-radius: 0.375rem!important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out!important;
    box-sizing: border-box!important;
}

.form-control-custom:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control-custom::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-custom:disabled,
.form-control-custom[readonly] {
    background-color: #e9ecef;
    opacity: 1;
    cursor: not-allowed;
}

.btn-custom {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease-in-out;

    /* default (neutral) */
    color: #212529;
    background-color: #e9ecef;
    border-color: #e9ecef;
}

.btn-custom:focus {
    outline: none;
}

.btn-custom {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease-in-out;

    /* default (neutral) */
    color: #212529;
    background-color: #e9ecef;
    border-color: #e9ecef;
}

.btn-custom:focus {
    outline: none;
}

.btn-custom-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-custom-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-custom-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-custom-primary:active {
    background-color: #0a58ca;
    border-color: #0a53be;
}

.btn-custom-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}