
/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .column {
        max-width: 100%;
        min-width: unset;
    }
    .main-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .column-main-controls {
        order: -1;
    }
    .column {
        max-height: unset;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        display: inline;
    }

    .header-title {
        margin: 15px auto;
        padding: 10px 20px;
        font-size: 1.6em;
        width: 100%;
        max-width: unset;
        word-break: break-word;
    }
    .main-wrapper {
        flex-direction: column;
        padding: 0 15px 5px 15px;
        width: 100%;
        max-width: unset;
    }
    .column {
        max-width: 100%;
        min-width: unset;
        padding: 15px 10px;
        max-height: none !important;
        overflow-y: visible !important;
    }
    .column-main-controls {
        order: -1;
    }
    h2 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }
    .input-section input[type="text"],
    .input-section input[type="file"],
    .input-section textarea {
        padding: 10px;
        font-size: 0.95em;
        max-width: 100%;
    }
    .button-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: stretch;
    }
    .button-group button {
        padding: 12px 15px;
        font-size: 0.95em;
        gap: 8px;
        width: 100%;
    }
    .button-group button i {
        font-size: 1.1em;
    }
    .preview-box, .google-result-box {
        margin: 15px auto;
        padding: 10px;
        width: 100%;
        max-width: 100%;
    }
    .preview-image {
        padding-bottom: 52.35%;
    }
    .preview-domain, .google-url {
        font-size: 0.8em;
    }
    .preview-title, .google-title {
        font-size: 1.05em;
    }
    .preview-description, .google-description {
        font-size: 0.85em;
    }
    .fixed-bottom-controls {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}
