body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}

#logo {
    width: 100px;
    /* Adjust this value based on your logo's dimensions */
    height: auto;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

#set-search {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    outline: none;
}

#add-set-btn,
#logout-btn,
#edit-btn, 
.personal-link {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    background-color: #f7941d;
    /* This is a nice Lego orange */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

#add-set-btn:hover,
#logout-btn:hover,
#edit-btn:hover,
.personal-link{
    background-color: #f57c00;
    /* A slightly darker shade for hover effect */
}

.notes-notification {
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 2;
}

.btn-notes {
    position: relative;
    z-index: 1;
}

.user-info {
    display: flex;
    gap: 10px;
    align-items: center;
}


/* Overview */

.accordion-button {
    text-decoration: none;
    color: inherit;
    font-weight: normal;
}

.accordion-button:hover,
.accordion-button:focus {
    text-decoration: none;
    color: inherit;
}

.accordion-body {
    width: 90%;
    height: 60vh;
    max-height: 60vh;
    overflow: auto;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}


/* Table CSS */

table {
    width: 100%;
}

.arrow {
    cursor: pointer;
    display: inline-block;
    border-left: 7px solid black;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    /* This makes it an arrow pointing up */
}

.expanded-row {
    display: none;
}

.expanded-content {
    display: flex;
    gap: 10px;
    /* Provides spacing between each piece of expanded content */
    padding-left: 20px;
    /* Offset to the right */
}

.nested-table {
    width: 100%;
    margin-top: 10px;
    border: none;
}

.nested-table th,
.nested-table td {
    border: 1px solid #dee2e6;
    padding: 0.3rem;
}

.nested-table thead {
    background-color: #f8f9fa;
    font-weight: 600;
}


.image-cell {
    position: relative;
}

.thumbnail {
    width: 75px;
    height: auto;
    display: block;
}

.hover-image {
    position: absolute;
    top: 0;
    left: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.image-cell:hover .hover-image {
    visibility: visible;
    opacity: 1;
}


.form-header {
    background-color: #333;
    color: white
}


.listed-content {
    display: block;
}

.sold-content {
    display: none;
}

.completed-content {
    display: none;
}

#overview-search {
    padding-left: 45px;
    /* Make space for the icon */
    background-image: url('../img/search-interface-symbol.png');
    /* Replace with your image URL */
    background-repeat: no-repeat;
    background-position: 5px center;
    /* Position the image to the left and vertically centered */
    background-size: 20px;
    /* Adjust the size of the icon as necessary */
}

.custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-container #overview-search {
    flex: 1;
    margin-right: 1rem;
    /* Optional: Adds some space between the input and the buttons */
}

.custom-container .btn-group {
    display: flex;
    gap: 1rem;
    /* Adds some space between the buttons */
}