/**
 * Lorem Ipsum Tools Specific Styles
 */

.lorem-container {
    max-width: 520px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.125);
    padding: 32px 28px 24px 28px;
}

.lorem-form-group {
    margin-bottom: 18px;
}

.lorem-label {
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

.lorem-input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.lorem-input:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.lorem-textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
    background: #f7fafd;
    color: #555;
}

.lorem-textarea:focus {
    outline: none;
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

.lorem-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.lorem-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lorem-btn-primary {
    background: #1976d2;
    color: #fff;
}

.lorem-btn-primary:hover {
    background: #1565c0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.lorem-btn-secondary {
    background: #e53935;
    color: #fff;
}

.lorem-btn-secondary:hover {
    background: #d32f2f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.lorem-btn:active {
    transform: translateY(0);
}

.lorem-result-section {
    margin-top: 18px;
}

.lorem-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 18px;
}

.lorem-info {
    max-width: 520px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1976d2;
}

.lorem-info-title {
    color: #1976d2;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.lorem-info-text {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.lorem-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.lorem-btn-copy {
    background: #28a745;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lorem-btn-copy:hover {
    background: #218838;
}

.lorem-char-count {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    text-align: right;
}

/* Responsive design */
@media (max-width: 768px) {
    .lorem-container {
        margin: 20px 16px;
        padding: 24px 20px;
    }
    
    .lorem-buttons {
        flex-direction: column;
    }
    
    .lorem-options {
        grid-template-columns: 1fr;
    }
    
    .lorem-actions {
        justify-content: center;
    }
}

/* Enhanced styling */
.tool-header h1 i {
    color: #1976d2 !important;
}
