.tickitoff-wrapper {
    font-family: 'Segoe UI', sans-serif;
    background-color: #eaf4f4;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    max-width: 700px;
    margin: 20px auto;
    overflow: hidden;
}
.tickitoff-wrapper input[type="text"] {
    padding: 10px;
    margin-bottom: 10px;
    width: 70%;
    border: 1px solid #a3c4c9;
    border-radius: 10px;
}
.tickitoff-wrapper button {
    background-color: #88bdbc;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-left: 5px;
}
.tickitoff-wrapper ul {
    list-style-type: none;
    padding: 0;
}
.tickitoff-wrapper li {
    background: #f6ffff;
    margin: 5px 0;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tickitoff-list {
    margin-top: 20px;
}
.slide {
    display: none;
}
#dots {
    text-align: center;
    margin-top: 15px;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.dot.active {
    background-color: #555;
}
