.image-thumb-container {
    float: left;
    cursor: pointer;
    width: 160px;
    height: 160px;
    margin: 5px;
}
.entry-content {
    float: left;
    padding:0;
    margin:0;
    width: 100%;

}
.saksdokumenter-list {
    float: left;
    display: none;
    font-size: 17px;
    min-width: 300px;
    min-height: 300px;

    text-decoration: none;

    color: white;
    padding: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    /*text-shadow: 1px 1px 1px rgba(2, 4,2, 1); Creates a subtle shadow effect */
}
.list-contents-area {
    float: left;
    display: none;
}
.wp-block-post-title {
    font-size: 25px;
}
#sel-factbox {
    background-color: grey;
}
.factbox-link {
    color: white;
    text-decoration:underline;
    cursor: pointer;

    .word-wrap-style {
        width: 800px;
        word-wrap: break-word; /* Allows breaking words to the next line if they exceed the container's width */
        overflow-wrap: break-word; /* Ensures compatibility across all browsers */
    }
}

p{
    font-size: 18px;
    word-wrap: break-word; /* Allows breaking words to the next line if they exceed the container's width */
    overflow-wrap: break-word;
}
.factbox-link:hover {
    color:coral;
}
.archive-toc-title {}
.archive-toc {
    float: left;
    width: 890px;
    height: 300px;
}
.back-green {
    background-color: green;
}
.left-archive-toc {
    width: 500px;

    float: left;

}
#right-archive-toc {
    width: 380px;
    display: none;
    float: left;
}

#fixed-box {
    display: none;
    position: fixed;
    top: 50px;
    right: 30px;
    width:380px;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 3px;

    background-color: lightgrey; /* Light gray background */
    border: 1px solid #ccc; /* Optional border */
    border-radius: 5px;
    box-shadow: 4px 4px 6px rgba(1, 1, 1, 0.1); /* Optional shadow */
    z-index: 1000; /* Ensure it stays above other elements */
    cursor: pointer;
}
#fixed-box :hover {
    background-color: white;
}

#message-area {
    float: left;
    width: 100%;
    height: 40px;
    background-color: bisque;
    padding: 2px;
    margin-top: 10px;
}
.ncs-select {
    width: 100%;
    height: 28px;
    background-color: bisque;
}

.sql-text-input {
    width: 120px;
    padding: 10px;
    font-size: 16px;
    color: #333;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sql-text-input:focus {
    outline: none;
    background: linear-gradient(90deg, #ff7e5f, #feb47b); /* Gradient background on focus */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: #ff7e5f;
    transform: scale(1.02);
}
.sql-textarea {
    width: 100%;
    min-height: 40px; /* Minimum height */
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    color: #333;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    resize: vertical; /* Allows vertical resizing only */
}

.sql-textarea:focus {
    outline: none;
    background: linear-gradient(90deg, #ff7e5f, #feb47b); /* Gradient background on focus */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: #ff7e5f;
    transform: scale(1.02);
}


.sql-button {
    display: inline-block;
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b); /* Gradient effect */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 20px;
    margin-left: 20px;
}

.sql-button:hover {
    background: linear-gradient(90deg, #feb47b, #ff7e5f); /* Reverse gradient on hover */
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}
.doc-button {
    width: 60px;
    height: 22px;
    background-color: darkcyan;
    margin-left: 5px;
    color: white;
    border: none;
    padding: 3px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.doc-button:hover {
    background-color: #0056b3;
}
