* {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: inherit;
}

body {
    background: linear-gradient(120deg, #020A23 0%, #0C75E6 100%);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
}

.custom-icon img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.container {
    background: linear-gradient(120deg, #E1F0E6 0%, #28518C 100%);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    width: 80%;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    transform: translate3d(0, 0, 0);
    animation: fadeIn 1s;
    position: relative;
}

.container:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.container h1 {
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    transition: color 0.3s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.input-textarea, .result-textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 200px;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    resize: none;
    margin-top: 20px;
    transition: border-color 0.3s ease-in-out;
    box-sizing: border-box;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #333;
}

.input-textarea::placeholder, .result-textarea::placeholder {
    color: #999;
}

.input-textarea:focus, .result-textarea:focus {
    border-color: #2D6CD1;
}
.long-input-textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 270px;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    resize: none;
    margin-top: 20px;
    transition: border-color 0.3s ease-in-out;
    box-sizing: border-box;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #333;
}

.long-input-textarea::placeholder, .result-textarea::placeholder {
    color: #999;
}

.long-input-textarea:focus, .result-textarea:focus {
    border-color: #2D6CD1;
}
.small-input-textarea {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    resize: none;
    margin-top: 5px;
    transition: border-color 0.3s ease-in-out;
    box-sizing: border-box;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #333;
}
.small-input-textarea::placeholder, .result-textarea::placeholder {
    color: #999;
}
.small-input-textarea:focus, .result-textarea:focus {
    border-color: #2D6CD1;
}
button {
    background: linear-gradient(to right, #2D6CD1, #2D6CD1);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    outline: none;
}

button:hover {
    background: linear-gradient(to right, #2D6CD1, #2D6CD1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

button:active {
    transform: scale(0.95);
}

button:focus, button:active {
    outline: none;
    border: none;
}

.custom-icon {
    font-size: 48px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.custom-icon:hover {
    transform: scale(1.1);
}

.input-textarea,
.result-textarea {
    font-size: 14px;
}
.input-textarea::placeholder {
    font-size: 14px;
}

.input-textarea::-webkit-scrollbar, .result-textarea::-webkit-scrollbar {
    width: 10px;
}

.input-textarea::-webkit-scrollbar-thumb, .result-textarea::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.input-textarea::-webkit-scrollbar-thumb:hover, .result-textarea::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.input-textarea::-webkit-scrollbar-track, .result-textarea::-webkit-scrollbar-track {
    background: transparent;
}

.copy-popup,.content-type-copy-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    z-index: 1000;
    white-space: nowrap;
}

.copy-popup svg, .content-type-copy-popup svg{
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.tooltip {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    cursor: help;
}

.question-mark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #71726E;
    color: #fff;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    font-weight: bold;
}

.tooltiptext {
    visibility: hidden;
    width: 250px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: calc(100% + 10px);
    right: 10px;
    opacity: 0;
    transition: opacity 0.2s;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}




.custom-select {
    margin: auto;
    position: relative;
    width: 300px;
}
.selected-option {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
}
.selected-option span {
    margin-left: 90px;
}
.selected-option i {
    margin-left: auto;
    transition: transform 0.3s;
}
.options-list {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    top: 100%;
    z-index: 1;
}
.option {
  padding: 10px 10px 10px 0px;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  color: inherit; 
}



.option:hover {
    background-color: #e0e0e0;
}
.search-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    outline: none;
}
.no-result {
    padding: 10px;
    width: 100%;
    display: none;
}
.sticky-search {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}


@media (max-width: 768px) {
    body {
        height: 100vh;
    }
    .container {
        width: 100%;
        height: 100%;
        margin-top: 50px;
        border-radius: 0;
    }
}