body {
    background-color: #ffffff; /* White background */
    color: rgb(32, 33, 36); /* Dark text color */
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

.navbar .navbar-toggler{
    border-color: transparent;
    padding: 0;
    margin-left: 1rem
}
.navbar-toggler:focus{
    box-shadow: none;
    color: #111
}

.content {
    max-width: 800px;
    margin-top: 50px;
}

.card {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.logo {
    height: 3rem; /* Adjust as needed */
    margin-right: 1rem;
}

.video-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa; /* Light gray background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    height: 50px;
    font-size: 1rem;
}

.btn-default {
    background: rgb(255,49,49);;
    background: linear-gradient(90deg, rgba(255,49,49,1) 0%, rgba(255,145,77,1) 90%);
    color: #ffffff;
    border: none;
    transition: background 0.3s ease;
}

.btn-default:hover {
    background: #262626;
    color: #ffffff;
    transition: background 0.3s ease;
}

.paste {
    pointer-events: unset;
    position: absolute;
    top: 50%;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-100%, -50%);
    z-index: 100;
}
.paste span {
    display: flex;
    cursor: pointer;
    padding: 2px 5px;
    font-size: 15px;
    color: #4a4a4a;
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    align-items: center;
}
.icon-btn.icon-clear, .icon-btn.icon-paste {
    background: url(/assets/images/paste.svg) no-repeat center;
    margin-right: 3px;
    width: 14px;
    height: 14px;
}
i.icon-btn {
    display: table-cell;
    height: 1em;
    width: 1em;
}

.results-section img {
    max-width: 100%;
    height: auto;
}

.tutorial-section {
    margin-top: 3rem;
}
.tutorial-step {
    margin-top: 1rem;
}

.masthead {
    border-bottom: 1px solid #ddd;
    background: linear-gradient(to right, #3f5efb, #fc466b);;
    color: #fff;
    padding: 100px 0;
}