.block_2_view {
    width: 600px;
}

.view_container {
    width: 100%;
    margin-top: 10px;
}

.url_input_container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}

.fromurl_input {
    width: 100%;
    max-height: 40px;
    border-radius: 8px;
    outline: none;
    border: none;
    color: var(--text_color);
    padding: 10px 15px;
    font-family: 'DM Sans', sans-serif;
}

.fromurl_input:focus {
    outline: none;
}

.fromurl_input::placeholder {
    color: #8a8a8a;
}

.upload_submit {
    width: 100px;
    height: 40px;
    padding: 0 20px;
    background-color: #333;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    color: var(--text_color);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.upload_submit:hover {
    background-color: #444;
}

.upload_h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 0px;
    color: var(--text_color);
    font-weight: 700;
}

.upload_h3_1 {
    font-size: 15px;
    font-weight: 400;
    color: var(--text_color);
    margin-bottom: 0px;
    text-align: left;
    width: 100%;
}

@media (max-width: 767px) {
    .block_2.block_2_upload {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .fromurl_input {
        width: 100%;
        box-sizing: border-box;
    }

    .upload_submit {
        width: max-content;
    }

    .upload_h2 {
        font-size: 22px;
    }

    .upload_h3_1 {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .block_2.block_2_upload {
        width: 90%;
        max-width: 600px;
    }
} 