.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    text-transform: none !important;}

/* Main container styles */
#view_container {
    min-height: 500px;
    background-color: #fff;
    overflow: auto;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Textarea styles */
#main_form {
    resize: vertical;
    min-height: 500px;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Success message styles */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border-radius: 4px;
    display: none;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #view_container, #main_form {
        min-height: 300px;
    }
    
    .col-md-6 {
        margin-bottom: 20px;
    }
}