/* styles.css */
.cart {
    width: 300px;
    height: 200px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    margin: 0 10px;
    display: none;
}

.cart.open {
    transform: translateY(100%);
}

.cart-content {
    padding: 20px;
}

.cart-content p {
    margin: 10px 0;
}

input {
    width: calc(100% - 40px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.toggle-btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

.toggle-btn:hover {
    background-color: #2980b9;
}

.wall-button {
    width: 400px;
    height: 50px;
    background-color: #357AB5;
    border-radius: 20px 20px 0 0;
    color: #FFFFFF;
    padding: 15px;
}

.menu-content {
    margin: 0 -14px;
    width: 400px;
}

.panel-body {
    color: #333333;
}

.form-group {
    margin-bottom: 15px;
}

.containerWall {
    width: 400px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.form-control {
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Diğer stillendirmeleri devam ettirebilirsin */

.containerWall {
    margin-bottom: 100px;
}

.designButton {
    bottom: 0;
    position: fixed;
    float: left;
    background-color: white;
    padding: 10px 20px;
}

.odaTasarlaButton {
    width: 200px;
    height: 75px;
    border-radius: 20px 20px 20px 20px;
    background-color: #357AB5;
    padding: 15px;
    float: left;

}

.odaDesignButton {
    margin-left: 10px;
    width: 200px;
    height: 75px;
    border-radius: 20px 20px 20px 20px;
    background-color: #D37B29;
    padding: 15px;
    float: left;
    position: relative;
}

.odaTasarlaButton.icon {
    background-image: url('../fonts/draw.fw.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    float: left;
    width: 42px;
    height: 42px;
    position: relative;
    left: 62px;
}

.odaDesignButton.icon {
    background-image: url('../fonts/design.fw.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    float: left;
    position: relative;
    left: 42px;
    width: 42px;
    height: 42px;
}

.designText {
    color: #FFFFFF;
    font-size: large;
}

@media screen and (max-width: 1220px) {
    .odaTasarlaButton {
        width: 150px;
        height: 60px;
        border-radius: 20px 20px 20px 20px;
        background-color: #357AB5;
        padding: 10px;
        float: left;
    }

    .odaDesignButton {
        margin-top: 5px;
        margin-left: 0px;
        width: 150px;
        height: 60px;
        border-radius: 20px 20px 20px 20px;
        background-color: #D37B29;
        padding: 10px;
        float: left;
        position: relative;
    }

    .odaTasarlaButton.icon {
        background-image: url('../fonts/draw.fw.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        float: left;
        width: 30px;
        height: 30px;
        position: relative;
        left: 35px;
    }

    .odaDesignButton.icon {
        background-image: url('../fonts/design.fw.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        float: left;
        position: relative;
        left: 30px;
        width: 30px;
        height: 30px;
    }

    .designText {
        color: #FFFFFF;
        font-size: medium;
    }
}


@media screen and (min-width: 1221px) and (max-width: 1640px) {
    .odaTasarlaButton {
        width: 150px;
        height: 60px;
        border-radius: 20px 20px 20px 20px;
        background-color: #357AB5;
        padding: 10px;
        float: left;
    }

    .containerWall {
        width: 400px;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }

    .odaDesignButton {
        margin-left: 5px;
        width: 150px;
        height: 60px;
        border-radius: 20px 20px 20px 20px;
        background-color: #D37B29;
        padding: 10px;
        float: left;
        position: relative;
    }

    .odaTasarlaButton.icon {
        background-image: url('../fonts/draw.fw.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        float: left;
        width: 30px;
        height: 30px;
        position: relative;
        left: 40px;
    }

    .odaDesignButton.icon {
        background-image: url('../fonts/design.fw.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        float: left;
        position: relative;
        left: 30px;
        width: 30px;
        height: 30px;
    }

    .designText {
        color: #FFFFFF;
        font-size: medium;
    }
}