.search-box {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-box label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.search-group:focus-within {
    background-color: rgba(0, 123, 255, 0.1);
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.3);
}

#searchInput:focus {
    outline: none;
    border: 1px solid #ccc;
    box-shadow: none;
}

.form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
    outline: none;
}

.loading-container {
    text-align: left;
}

.loading-text {
    font-size: 14px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.dots {
    font-size: 30px;
    color: #0e4da4;
    font-weight: bold;
    margin-top: 5px;
}

.dot {
    display: inline-block;
    opacity: 0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: #0e4da4;
    margin-right: 5px;
    animation: dot-blink 1.5s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

.dot:nth-child(4) {
    animation-delay: 0.9s;
}

.dot:nth-child(5) {
    animation-delay: 1.2s;
}

.dot:nth-child(6) {
    animation-delay: 1.5s;
}

.dot:nth-child(7) {
    animation-delay: 1.8s;
}

.dot:nth-child(8) {
    animation-delay: 2.1s;
}

.dot:nth-child(9) {
    animation-delay: 2.4s;
}

.dot:nth-child(10) {
    animation-delay: 2.7s;
}

@keyframes dot-blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.loading-container-smart-answer {
    text-align: left;
}

.loading-text-smart-answer {
    font-size: 14px;
    color: rgb(0 0 0 / 67%);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.dots-smart-answer {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.dot-smart-answer {
    display: inline-block;
    opacity: 0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: rgb(115 159 135 / 40%);
    margin-right: 5px;
    animation: dot-blink 1.5s infinite;
}

.dot-smart-answer:nth-child(1) {
    animation-delay: 0s;
}

.dot-smart-answer:nth-child(2) {
    animation-delay: 0.3s;
}

.dot-smart-answer:nth-child(3) {
    animation-delay: 0.6s;
}

.dot-smart-answer:nth-child(4) {
    animation-delay: 0.9s;
}

.dot-smart-answer:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes dot-smart-answer-blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

#bricksContainer {
    margin-top: 20px;
}

.brick {
    margin-bottom: 20px;
}

.card-header {
    background-color: #0e4da4;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.card-body {
    padding: 15px;
}

.card-body p {
    color: #333;
}

.card-body-href {
    margin-bottom: 20px;
    text-decoration: none;
}

.brick-element-href {
    margin-left: 10px;
    text-decoration: none;
}
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.page-link {
    margin: 0 5px;
    padding: 8px 12px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.page-link.active {
    background-color: #82c4c3;
    color: white;
}

.page-link:hover {
    background-color: #ddd;
}

/*.note-container {*/
/*    background-color: #e0ebe9;*/
/*    border-left: 4px solid rgb(115 159 135 / 40%);*/
/*    margin: 20px 0 15px 0;*/
/*    padding: 10px 15px;*/
/*    border-radius: 8px;*/
/*    position: relative;*/
/*    width: 100%;*/
/*    !*min-height: 200px;*!*/
/*    box-sizing: border-box;*/
/*}*/

/*.note-text {*/
/*    font-style: italic;*/
/*    white-space: pre-wrap;*/
/*    font-family: monospace;*/
/*    overflow: hidden;*/
/*    padding: 10px;*/
/*    display: inline-block;*/
/*}*/

.note-container {
    background-color: #e0ebe9;
    border-left: 4px solid rgb(115 159 135 / 40%);
    margin: 20px 0 15px 0;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.note-text {
    font-style: italic;
    white-space: pre-wrap;
    font-family: monospace;
    overflow: hidden;
    padding: 10px;
    display: inline-block;
    max-height: 200px;
    transition: max-height 0.3s ease;
}

.note-text.expanded {
    max-height: none;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.show-more-btn {
    display: block;
    margin: 10px auto;
    font-size: 12px;
    padding: 10px 20px;
    background-color: rgb(115 159 135 / 40%);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    max-width: 250px;
    text-align: center;
}

.show-more-btn:hover {
    background-color: rgba(49, 85, 67, 0.53);
}


.show-more-btn:focus {
    outline: none;
    background-color: rgba(49, 85, 67, 0.53);
}

.note-text.expanded {
    max-height: none;
}

.pagination-container {
    text-align: center;
    margin-top: 20px;
}

.page-number {
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
    color: black; /* Μαύρο χρώμα */
    font-weight: normal;
}

.page-number.active {
    font-weight: bold;
    color: rgba(49, 85, 67, 0.53);
}

.page-number:hover {
    text-decoration: underline;
}

.page-number.disabled {
    color: gray;
    cursor: not-allowed;
}

span {
    margin: 0 5px;
}

.query-number {
 color: rgba(53, 104, 78, 0.7);
}