/*
Theme Name: Kakua Theme
Theme URI: https://kakua.com
Author: Marcos D. Nobre for PacIOOS
Author URI: https://pacioos.hawaii.edu/
Version: 1
Text Domain: kakau
*/

body {
    background: #eae9e4;
}

.text-bg-dark, .bg-dark {
    background-color: #4b6657 !important;
}
.nav-link.active {
    background-color: #042940 !important;
}
.deco-footer {
    background: url('images/bottom.png');
    background-repeat: repeat-x;
    height: 54px;
    width: 100%;
}
.deco-header {
    background: url('images/top.png');
    background-repeat: repeat-x;
    height: 54px;
    width: 100%;
    background-position: top center;

}

/* Planting Calendar Styles */

/* Alert Attention Box */
.alert-attention-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.alert-attention-header {
    background-color: #C85A54;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 6px 6px 0 0;
    margin: -20px -20px 15px -20px;
    text-align: center;
}

.alert-conditions-list {
    list-style-type: decimal;
    list-style-position: outside;
    padding-left: 25px;
    margin: 15px 0;
}

.alert-conditions-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.alert-time-periods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px 0;
    font-weight: bold;
}

.alert-time-periods .period {
    font-size: 1rem;
}

.alert-time-periods .past {
    color: #666;
}

.alert-time-periods .next {
    color: #333;
}

/* Calendar Widgets Container */
.calendar-widgets-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 25px 0;
    flex-wrap: wrap;
}

.calendar-widget {
    text-align: center;
    margin: 10px;
}

.calendar-widget-title {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #333;
}

#planting-year-calendar,
#planting-month-calendar {
    display: inline-block;
    margin: 0 auto;
}

/* Month Selection Section */
.month-selection-container {
    margin: 25px 0;
}

.month-planting-label {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.month-dropdown-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

#month-planting-occurred {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 2px solid #005C53;
    border-radius: 6px;
    background-color: #ffffff;
    cursor: pointer;
    font-weight: 500;
}

#month-planting-occurred:focus {
    outline: none;
    border-color: #042940;
    box-shadow: 0 0 0 3px rgba(4, 41, 64, 0.1);
}

/* Month Display Box */
.month-display-box {
    background-color: #f8f9fa;
    border: 2px solid #005C53;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 15px 0;
    text-align: center;
    position: relative;
}

#selected-month-display {
    font-weight: bold;
    font-size: 1.1rem;
    color: #042940;
}

/* Recommended Actions Box */
.recommended-actions-box {
    background-color: #ffffff;
    border: 2px solid #4b6657;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.recommended-actions-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #042940;
    text-align: center;
}

#recommended-actions-list ul {
    margin: 0;
    padding-left: 20px;
}

#recommended-actions-list li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #333;
}

/* Small Map Placeholder */
.small-map-container {
    position: relative;
    height: 300px;
    background-color: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.map-placeholder-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: #FF0000;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-widgets-container {
        flex-direction: column;
    }

    .month-dropdown-wrapper {
        max-width: 100%;
    }

    .alert-time-periods {
        flex-direction: column;
        gap: 10px;
    }
}





