/* Alphaguess Solver Styles */

.alphaguess-helper {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alphaguess-helper h3 {
    color: #333;
    margin-top: 0;
    font-weight: bold;
}

.alphaguess-helper p {
    color: #666;
}

.alphaguess-input {
    background: white;
    border: 2px solid #dee2e6;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.alphaguess-input:focus {
    outline: none;
    border-color: #336699;
    box-shadow: 0 0 0 3px rgba(51, 102, 153, 0.1);
}

.alphaguess-helper label {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.range-display {
    background: white;
    border: 2px solid #dee2e6;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.range-display strong {
    color: #333;
    font-size: 16px;
}

.range-display p {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.suggested-words {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.suggested-word {
    background: white;
    border: 2px solid #336699;
    color: #336699;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.suggested-word:hover {
    background: #336699;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.strategy-tip {
    background: #f8f9fa;
    border-left: 4px solid #336699;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.todays-answer-box {
    background: #eaf2fb;
    border: 2px solid #336699;
    color: #333;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.todays-answer-box h3 {
    color: #244a70;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.todays-answer-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
}

.todays-answer-box a {
    display: inline-block;
    background: #336699;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.todays-answer-box a:hover {
    background: #2b557e;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.alphaguess-helper .btn.btn-blue {
    background: #336699;
    border-color: #336699;
}

.alphaguess-helper .btn.btn-blue:hover,
.alphaguess-helper .btn.btn-blue:focus {
    background: #2b557e;
    border-color: #2b557e;
}

.related-tools {
    margin-top: 15px;
}

.related-tool-row {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
}

.related-tool-row h4 {
    margin-top: 0;
    margin-bottom: 6px;
}

.related-tool-row p {
    margin-bottom: 0;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .alphaguess-helper {
        padding: 20px 15px;
    }

    .todays-answer-box {
        padding: 20px 15px;
    }

    .suggested-word {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .alphaguess-input {
        font-size: 14px;
        padding: 12px;
    }

    .todays-answer-box h3 {
        font-size: 18px;
    }

    .todays-answer-box p {
        font-size: 14px;
    }
}
