/*Home's page specific styles */
.home-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.home-button {
    padding: 12px 20px;
    background-color: #007BFF; /* Change to a blue color */
    color: white;
    border: none;
    border-radius: 8px; /* Rounded corners */
    font-size: 15px; /* Larger font size */
    font-weight: bold; /* Bold text */
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

.home-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}
/*END of Home's page specific styles */

/*////////////////////////////////////////////////////////////////////////////////////////*/

/* Storage's page specific styles */
.storage-page {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.storage-container {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.storage-form-group {
    margin-bottom: 15px;
}

.storage-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.storage-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.storage-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.storage-button {
    padding: 7px 15px;
    background-color: #007BFF; /* Change to a blue color */
    color: white;
    border: none;
    border-radius: 8px; /* Rounded corners */
    font-size: 14px; /* Larger font size */
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

.storage-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.02); /* Slightly enlarge the button */
}

.storage-response {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 100px;
}

.storage-title {
    margin-top: 0;
}
/*END of Storage's page specific styles */

/*////////////////////////////////////////////////////////////////////////////////////////*/

/* Marina's page specific styles */
.centered-message {
    text-align: center;
}

.centered-image {
    display: block;
    margin: 0 auto;
    width: 400px; /* You can adjust this specific width */
    height: auto; /* Maintains aspect ratio */
    border-radius: 5px; /* Optional: adds rounded corners */
}

.heart-button-container {
    text-align: center;
    margin-top: 20px;
}

.heart-button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 10px 20px;
}

.heart-button:hover {
    transform: scale(1.2);
}

.heart {
    position: fixed;
    font-size: 1.5rem;
    pointer-events: none;
    animation: float-up 1.5s forwards;
    z-index: 100;
}

@keyframes float-up {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}
/* End of Marina's page specific styles */
