/* Fishing Weather Widget CSS (v1.0.2) */

.fw-banner {
    background: #1d1e21;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    width: 98%;
    max-width: 1000px;
    margin: 20px auto;
    font-family: "Helvetica Neue", Arial, sans-serif;
    border: 1px solid rgba(255,255,255,0.15);
    box-sizing: border-box;
    line-height: 1.4;
    position: relative; /* 右下クレジットの基準点として追加 */
}

.fw-col {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 0 20px;
}

.fw-col:last-child { 
    border-right: none; 
}

/* Labels */
.fw-label {
    font-size: 10px;
    opacity: 0.5;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Time/Location Column */
.fw-date { font-size: 18px; font-weight: bold; }
.fw-clock { font-size: 38px; font-weight: bold; margin-top: 5px; }
.fw-location { color: #adff2f; font-size: 15px; font-weight: bold; }

/* Sun Times (Sunrise / Sunset) */
.fw-sun-times {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.fw-sun-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.fw-sun-label {
    font-size: 11px;
    color: #ffcc00;
    font-weight: bold;
    letter-spacing: 1px;
}
.fw-sun-time {
    font-size: 14px;
    font-weight: bold;
    color: rgba(255,255,255,0.9);
}

/* Main Weather Column */
.fw-weather-row { display: flex; align-items: center; margin-top: 10px; }
.fw-icon-img { width: 80px; filter: brightness(0) invert(1) contrast(1.2); }
.fw-icon-svg { width: 80px; height: 80px; margin-right: 10px; }
.fw-icon-svg circle, .fw-icon-svg line { stroke: #fff; stroke-width: 3.5; stroke-linecap: round; fill: none; }
.fw-temp { font-size: 58px; font-weight: bold; line-height: 1; }
.fw-temp small { font-size: 20px; vertical-align: super; margin-left: 2px; }
.fw-desc { font-size: 14px; margin-bottom: 10px; }

/* Stats (POP/WIND) */
.fw-stats { display: flex; align-items: center; gap: 15px; }
.fw-pop { font-size: 22px; font-weight: bold; color: #7ecbff; display: flex; align-items: center; }
.fw-pop svg { width: 12px; height: 16px; fill: #7ecbff; margin-right: 5px; }
.fw-wind { font-size: 18px; font-weight: bold; color: #ffcc00; }
.fw-divider { opacity: 0.2; }

/* Tomorrow/Index Column */
.fw-tomorrow-row { display: flex; align-items: center; margin-bottom: 15px; }
.fw-icon-sub { width: 40px; filter: brightness(0) invert(1); }
.fw-temp-sub { font-size: 22px; font-weight: bold; margin-left: 10px; }
.fw-status-box { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 15px; }
.fw-score { color: #adff2f; font-size: 26px; font-weight: bold; }
.fw-score-text { font-size: 11px; margin-top: 4px; opacity: 0.8; }

/* Right Bottom Credit */
.fw-credit {
    position: absolute;
    bottom: 8px;
    right: 15px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    pointer-events: none;
}

/* Preview Box (Editor) */
.fw-preview-notice {
    padding: 20px;
    background: #222;
    color: #adff2f;
    border: 1px dashed #adff2f;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .fw-banner { flex-direction: column; width: 96%; }
    .fw-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 15px 0; }
    .fw-col:last-child { border-bottom: none; }
}