.swimability-ring {
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto;
}

.swimability-ring .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid;
}

.swimability-ring .score {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    width: 100%;
}

.score-excellent { border-color: #28a745 !important; }
.score-good { border-color: #007bff !important; }
.score-fair { border-color: #ffc107 !important; }
.score-poor { border-color: #fd7e14 !important; }
.score-unswimable { border-color: #dc3545 !important; }

.forecast-card {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.forecast-card:hover {
    transform: translateY(-5px);
}

.wind-direction {
    font-size: 24px;
    display: inline-block;
    transition: transform 0.2s;
}

.tide-indicator {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 12px;
}

.tide-high {
    background-color: #28a745;
    color: white;
}

.tide-low {
    background-color: #fd7e14;
    color: white;
}

.wi {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.card-body {
    text-align: center;
}

/* Info Modal Styles */
.score-guide .score-indicator {
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
}

.score-indicator.excellent { background-color: #28a745; }
.score-indicator.good { background-color: #007bff; }
.score-indicator.fair { background-color: #ffc107; color: #000; }
.score-indicator.poor { background-color: #fd7e14; }
.score-indicator.unswimable { background-color: #dc3545; }

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.modal-header.bg-primary {
    color: white;
}

.modal-body section {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
}

.modal-body section:last-child {
    border-bottom: none;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
} 