/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

.form_field_container {
    margin-top: 20px;
}


/* Ensure dropdown aligns to the right of the title */
.dropdown.is-right .dropdown-menu {
    right: 0;
    left: auto;
}

/* Style for the dropdown button */
.dropdown-trigger .button.is-light {
    border: 1px solid #dbdbdb; /* Bulma's default border */
    background-color: #f5f5f5; /* Light background */
}

/* Ensure box hover effect remains */
.box:hover,
.box:focus {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
    outline: none !important;
    cursor: pointer;
}

/* Style for lots count at the bottom of the box */
.lots-count {
    padding-top: 1rem;
    font-size: 1.1rem;
    color: #363636; /* Bulma's default text color */
}

/* Avatar circle for comments */
.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Center the menu dropdown in navbar */
.navbar .centered-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}