body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
}
.sidebar {
    width: 250px;
    background: #ebf7ff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.search-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 10px;
    width: 60%;
}
input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
}
.actions {
    /*margin-top: 4px;*/
    display: flex;
    gap: 10px;
}
button {
    padding: 10px 15px;
    border: none;
    background: #ddd;
    cursor: pointer;
    border-radius: 10px;
}
.c_icon{
    font-size: 3.0rem;
}
@media screen and (min-width: 1450px) {
    .c_icon{
        font-size: 1.5rem;
    }
}