/* Word Counter - Main Styles */
.word-counter-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.word-counter-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.word-counter-header h2 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 28px;
}

.word-counter-header p {
    color: #7f8c8d;
    font-size: 16px;
}

.word-counter-header i {
    margin-right: 10px;
    color: #3498db;
}

.word-counter-form {
    margin-bottom: 15px;
}

.text-input {
    width: 100%;
    min-height: 200px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
}

.text-input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.word-counter-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.result-icon {
    margin-right: 15px;
    font-size: 24px;
    color: #3498db;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
}

.result-content {
    display: flex;
    flex-direction: column;
}

.result-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.result-value {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.word-counter-info {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #7f8c8d;
    font-size: 14px;
}

.word-counter-info i {
    margin-right: 5px;
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .word-counter-results {
        grid-template-columns: 1fr;
    }
    
    .word-counter-wrapper {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .word-counter-header h2 {
        font-size: 24px;
    }
    
    .text-input {
        min-height: 150px;
    }
}