/**
 * Emma Tools Menu Styles
 */

/* Tools Menu Container */
.sfpe-tools-menu {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sfpe-tools-menu h3 {
    font-size: 24px;
    color: #0D353E;
    margin-bottom: 10px;
}

.sfpe-tools-menu > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

/* Tool Options Grid */
.sfpe-tool-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Tool Button */
.sfpe-tool-btn {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.sfpe-tool-btn:hover {
    background: #fff;
    border-color: #6CFFC4;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 255, 196, 0.2);
}

.sfpe-tool-icon {
    font-size: 48px;
    line-height: 1;
}

.sfpe-tool-title {
    font-size: 18px;
    font-weight: 600;
    color: #0D353E;
}

.sfpe-tool-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Interview Practice Styles */
.sfpe-interview-practice {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
}

.sfpe-interview-practice h3 {
    font-size: 22px;
    color: #0D353E;
    margin-bottom: 10px;
}

.sfpe-interview-practice > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.sfpe-practice-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sfpe-practice-cat {
    padding: 12px 25px;
    background: #fff;
    border: 2px solid #0D353E;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #0D353E;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sfpe-practice-cat:hover {
    background: #0D353E;
    color: #fff;
    transform: translateY(-2px);
}

/* Interview Question */
.sfpe-interview-question {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sfpe-interview-question h4 {
    font-size: 18px;
    color: #0D353E;
    margin-bottom: 15px;
}

.sfpe-question-text {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 25px;
    padding: 20px;
    background: #f0fdf8;
    border-left: 4px solid #6CFFC4;
    border-radius: 4px;
}

.sfpe-answer-input {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sfpe-interview-answer {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.sfpe-interview-answer:focus {
    outline: none;
    border-color: #6CFFC4;
}

.sfpe-submit-answer {
    align-self: flex-end;
    padding: 12px 30px;
    background: #6CFFC4;
    color: #0D353E;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sfpe-submit-answer:hover {
    background: #4CAF50;
    color: #fff;
    transform: translateY(-2px);
}

/* Interview Feedback */
.sfpe-interview-feedback {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sfpe-interview-feedback h4 {
    font-size: 22px;
    color: #0D353E;
    margin-bottom: 20px;
}

.sfpe-feedback-score {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #f0fdf8;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 18px;
}

.score-value {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
}

.sfpe-feedback-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-section {
    padding: 20px;
    border-radius: 8px;
}

.feedback-section.strengths {
    background: #e8f5e9;
}

.feedback-section.improvements {
    background: #fff3e0;
}

.feedback-section.suggestion {
    background: #e3f2fd;
}

.feedback-section h5 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feedback-section ul {
    margin: 0;
    padding-left: 25px;
}

.feedback-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.feedback-section p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.sfpe-practice-another {
    margin-top: 20px;
    padding: 12px 30px;
    background: #0D353E;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sfpe-practice-another:hover {
    background: #1a4a56;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sfpe-tool-options {
        grid-template-columns: 1fr;
    }
    
    .sfpe-practice-categories {
        flex-direction: column;
    }
    
    .sfpe-practice-cat {
        width: 100%;
        text-align: center;
    }
}