/* =====================================================
   Umbraco 17 – Rich Text Editor Styles
   ===================================================== */

/* Basic RTE content styling */
.rte-content p {
    margin-bottom: 1rem;
}

.rte-content h1, .rte-content h2, .rte-content h3,
.rte-content h4, .rte-content h5, .rte-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.rte-content ul, .rte-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.rte-content img {
    max-width: 100%;
    height: auto;
}

.rte-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.rte-content table th,
.rte-content table td {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
}

.rte-content blockquote {
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color, #007bff);
    background-color: #f8f9fa;
}



/**umb_name:LightBlueButton*/
.LightBlueButton {
    font-size: 1.25rem;
    font-size: clamp(.75rem, .75rem + 2vw, 1.25rem);
    padding: 7px 20px 5px;
    min-width: 140px;
    display: inline-block;
    font-weight: normal;
    border-radius: 5px;
    color: white;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, .2);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

/**umb_name:DarkBlueButton*/
.DarkBlueButton {
    font-size: 1.25rem;
    font-size: clamp(.75rem, .75rem + 2vw, 1.25rem);
    padding: 7px 20px 5px;
    min-width: 140px;
    display: inline-block;
    font-weight: normal;
    border-radius: 5px;
    color: white;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, .2);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

/**umb_name:YellowButton*/
.buttonYellow {
    font-size: 1.25rem;
    font-size: clamp(.75rem, .75rem + 2vw, 1.25rem);
    padding: 7px 20px 5px;
    min-width: 140px;
    display: inline-block;
    font-weight: normal;
    border-radius: 5px;
    color: white;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, .2);
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}

/**umb_name:WhiteText*/
.WhiteText {
    color: white;
}

/**umb_name:RedText*/
.RedText {
    color: Crimson;
}

/**umb_name:smalltext*/
.smalltext {
    font-size: .75rem;
    position: relative;
    padding-top: 15px;
    margin-top: 30px;
    display: block;
}

/**umb_name:h2White*/
.H2.White {
    font-size: 1.313rem;
    font-size: clamp(.938rem, .938rem + 2vw, 1.313rem);
    Color: #fff;
}

/**umb_name:twoColumnText*/
.twoColumnText {
    column-count: 2;
    column-gap: 3rem;
}

/**umb_name:title*/
.title {
    font-weight: bold;
    font-size: 1.25rem;
}

/**umb_name:GreenTag*/
.tagTasks {
    color: #58c2a9;
    font-size: 14px;
    background: #e0fbf6;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 50px;
}