body {
    background-color: #080f13;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    color: white;
}

a {
    color: rgb(0, 89, 255);
    text-decoration: none;
}

.textBlocks {
    padding-left: 25%;
}

.examplePlan{
    text-align: center;
}

button {
    text-align: center;
    color: black;
    background-color: white;
    border-radius: 5px;
    width: auto;
    flex-wrap: wrap;
    padding: 7px;
}

.filterbuttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.container {
    padding: 50px;
    display: flex;
    gap: 30px;
    /* Space between boxes */
    flex-wrap: wrap;
    /* Allows boxes to wrap on smaller screens */
    justify-content: center;
}

.box {
    background-color: #fff;
    border-radius: 15px;
    /* Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    overflow: hidden;
    /* Ensures image respects border-radius */
    width: 300px;
    /* Fixed width for each box */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 60px;
    /* Space for the plus button */
}

.box:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    /* More prominent shadow on hover */
}

.box-image {
    width: 100%;
    height: 180px;
    /* Fixed height for images */
    object-fit: cover;
    /* Ensures image covers the area */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.box-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    /* Allows content to take available space */
}

.box-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

.box-content p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.plus-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.plus-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.delete-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.delete-button:hover {
    background-color: rgb(163, 0, 0);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .container {
        gap: 25px;
    }

    .box {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .box {
        width: 90%;
        max-width: 350px;
    }
}

.two-box {
    display: flex;
}