.indianred-text {
    color:indianred
}

.heading-primary {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.text-subtitle {
    font-weight: 300;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

.paragraph-primary {
    color: rgb(99, 198, 237);
}

.text-highlight {
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(99, 198, 237);
}

.create-input-readonly, .edit-input-readonly {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.responsive-text-nav {
    font-size: 1.125rem; /* 1.125em size is similar with text-lg */
}

@media (max-width: 1024px) {
    .responsive-text-nav {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .responsive-text-nav {
        font-size: 0.9rem;
    }
}

@media (max-width: 540px) {
    .responsive-text-nav {
        font-size: 0.7rem;
    }
}

.responsive-text-heading {
    font-size: 4rem; /* 4em size is similar with text-6xl */
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .responsive-text-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .responsive-text-heading {
        font-size: 2.9rem;
    }
}

@media (max-width: 640px) {
    .responsive-text-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 540px) {
    .responsive-text-heading {
        font-size: 1.9rem;
    }
}

.responsive-text-paragraph {
    font-size: 1.5rem; /* 1.5em size is similar with text-2xl */
}

@media (max-width: 1024px) {
    .responsive-text-paragraph {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .responsive-text-paragraph {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .responsive-text-paragraph {
        font-size: 1.1rem;
    }
}

@media (max-width: 540px) {
    .responsive-text-paragraph {
        font-size: 1rem;
    }
}

.responsive-img-padding {
    padding-left: 25rem;
    padding-right: 25rem;
}

@media (max-width: 1256px) {
    .responsive-img-padding {
        padding-left: 23rem;
        padding-right: 23rem;
    }
}

@media (max-width: 1140px) {
    .responsive-img-padding {
        padding-left: 21rem;
        padding-right: 21rem;
    }
}

@media (max-width: 1198px) {
    .responsive-img-padding {
        padding-left: 19rem;
        padding-right: 19rem;
    }
}

@media (max-width: 1140px) {
    .responsive-img-padding {
        padding-left: 17rem;
        padding-right: 17rem;
    }
}

@media (max-width: 1082px) {
    .responsive-img-padding {
        padding-left: 15rem;
        padding-right: 15rem;
    }
}

@media (max-width: 1024px) {
    .responsive-img-padding {
        padding-left: 13rem;
            padding-right: 13rem;
    }
}

@media (max-width: 966px) {
    .responsive-img-padding {
        padding-left: 11rem;
        padding-right: 11rem;
    }
}

@media (max-width: 908px) {
    .responsive-img-padding {
        padding-left:9rem;
        padding-right: 9rem;
    }
}

@media (max-width:850px) {
    .responsive-img-padding {
        padding-left: 7rem;
        padding-right: 7rem;
    }
}

@media (max-width: 768px) {
    .responsive-img-padding {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (max-width: 640px) {
    .responsive-img-padding {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 590px) {
    .responsive-img-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 540px) {
    .responsive-img-padding {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.responsive-embed-youtube {
    max-width: 100%; /* width: 560px; */
    height: auto; /* height: 315px; */
    border: none;
}

.custom-link {
    color: #007bff;
    word-break: break-all;
}

.item-links {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    justify-content: space-around;
    margin-top:2.5rem;
    padding-top: 2.5rem;
}

.item-column {
    /* flex: 1; */
    margin-left: 5px;
    margin-right: 5px; /* Adjust spacing between columns */
}

.item-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 100;
}

.item-column ul {
    list-style-type: none;
}

.item-column ul li {
    margin-bottom: 5px;
}

.item-column ul li a {
    color: #333;
    text-decoration: none;
}

.item-column ul li a:hover {
    text-decoration: underline;
}

.text-link {
    color: #007bff;
}

.confirmation-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    max-width: 400px;
    border-radius: 10px;
}

.confirmation-content {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.cancel-btn, .confirm-btn {
    padding: 8px 16px;
    margin:20 15 5 15px;
    cursor: pointer;
    border-radius: 5px;
}

.cancel-btn {
    background-color: #ddd;
}

.confirm-btn {
    background-color: #f44336;
    color: white;
}