body {
    font-family: IRanYekan, sans-serif;
    background: rgb(135,206,235);
    background: linear-gradient(180deg, rgba(135,206,235,1) 0%, rgba(0,212,255,1) 39%, rgba(255,255,255,1) 100%);
    margin: 0;
    padding: 0;
    overflow: auto;
    height: 100%;
    min-width: 320px
    min-height: -webkit-fill-available;
    min-height: 100vh;
}
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}
.cloud-image {
    position: absolute;
    opacity: 0.8;
}
.cloud-image:nth-child(1) {
    width: auto;
    height: auto;
    top: 10%;
    left: 20%;
    animation: float 100s ease infinite alternate;
}
.cloud-image:nth-child(3) {
    width: 150px;
    height: auto;
    top: 70%;
    left: 80%;
    animation: float 18s linear infinite ;
}
.cloud-image:nth-child(2) {
    width: 250px;
    height: auto;
    top: 40%;
    left: 10%;
    animation: airplane 25s ease-in infinite;
}
@keyframes float {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(40%);
    }
}
@keyframes airplane {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(500%);
    }
}
.container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: right;
    transform: perspective(1000px);
    margin-top: 50px;
    min-height: 350px;
}
h2 {
    text-align: center;
    position: relative;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
}
.logo {
    width: 150px;
    transition: transform 0.3s;
}
.logo:hover {
    transform: scale(1.1);
}
.logo2 {
 width: 40px;
transition: transform 0.3s;
vertical-align: middle;
}
.logo2:hover {
    transform: scale(1.1);
}
.header-icons {
    display: flex;
    gap: 15px;
}
.header-icons i {
    font-size: 24px;
    color: #2aacd5;
    cursor: pointer;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin: 10px 0 5px;
    font-size: 18px;
}
.input-icon {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
}
.input-icon input, .input-icon select {
    width: 100%;
    padding: 10px 40px;
    font-family: IRanYekan, sans-serif;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 18px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.input-icon i {
    position: absolute;
    right: 10px;
    font-size: 18px;
    color: #ccc;
    padding-bottom: 20px;
}
.searchbtt {
    padding: 10px;
    background-color: #2aacd5;
    color: white;
    border: 1px solid #2aacd5;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 30px;
    margin-top: 30px;
    font-family: IRanYekan, sans-serif;
}
.searchbtt:hover {
    background-color: #38bbe4;
}
.flight {
    padding: 10px;
    background: #e9ecef;
    border-radius: 10px;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.okflight, .no-flights {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.okflight {
    background: #78bb80;
}
.no-flights {
    background: #ffcccc;
}
        .no-telegram-id {
    text-align: center;
    margin-top: 20px;
}
.telegram-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2aacd5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.site-button {
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    background-color: #2aacd5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    min-width: 180px;
}
.site-button:hover {
 transform: rotateY(10deg);
 background-color: #38bbe4;
}
.mobile {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: IRanYekan,sans-serif;
    font-size: 18px;
}
.max-price {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: IRanYekan,sans-serif;
    font-size: 18px;
}
.searchform {
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ccc;
    padding-top: 35px;
    padding-bottom: 0px;
}
.loading {
    display: none;
    text-align: center;
}
.loading i {
    font-size: 30px;
    color: #2aacd5;
}
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #ccc;
    
}
ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    background-color: #333;
}
ul li {
    flex: 1;
}
ul li a {
    display: block;
    padding: 14px 20px;
    text-align: center;
    color: white;
    text-decoration: none;
}
ul li a:hover {
    background-color: #575757;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 8px;
    text-align: center;
    max-width: 20%;

}
th {
    background-color: #2aacd5;
    color: white;
}
.fadeOut {
animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
to {
    opacity: 0;
    height: 0;
}
}
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
  .alarmsuccess {
    max-width: 220px
}

.alarmsuccess:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
    }

    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }
    .preloader img {
        width: 100px;
        animation: spin 2s linear infinite;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }