
.tweet-container {
    width: 100%;
}

.tweet-description a {
    color: #00b3ff; /* Default color for unvisited links */
}

.tweet-description a:visited {
    color: #1482b1; /* Color for visited links */
}

.tweet-description a:active {
    color: #1482b1; /* Color when the link is clicked */
}

.tweet {
    background-color: #ffffff;
    margin: 10px 0;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tweet-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.tweet-header .username {
    font-weight: bold;
    font-size: 16px;
}

.tweet-header .date {
    color: #657786;
    font-size: 14px;
}

.tweet-description {
    margin-bottom: 10px;
    font-size: 15px;
}

.tweet-image, .plyr {
    width: 100%;
    border-radius: 20px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}

.search-bar {
    width: calc(100% - 60px); /* Adjust the width based on button size */
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-bar::placeholder {
    color: #aaa;
}

.search-button {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-left: none;
    background-color: #00b3ff;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.search-button:hover {
    background-color: #009acd;
}

.search-icon {
    width: 20px; /* Adjust icon size */
    height: 20px;
}

.form-card {
    background-color: #ffffff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: 'Lato', sans-serif; /* Use Lato for form text */
}

.form-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
    font-family: 'Arvo', serif; /* Use Arvo for form headings */
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    font-family: 'Arvo', serif; /* Use Arvo for labels */
    align-self: flex-start; /* Align labels to the start */
}

.form-group input[type="text"],
.form-group input[type="datetime-local"],
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Lato', sans-serif; /* Use Lato for input text */
}

.form-group textarea {
    height: auto; /* Set initial height to auto */
    min-height: 150px; /* Set the minimum height */
    resize: none; /* Disable manual resizing */
    overflow-y: hidden; /* Hide the vertical scrollbar */
}

.form-group .button-group {
    display: flex;
    justify-content: space-between; /* Distribute space between buttons */
    width: 100%; /* Button group width */
    margin-top: 5px;
}

.form-group .button-group button {
    width: 100%; /* Button width */
    margin: 0 5%; /* Space between buttons */
}

/* Base styles for alerts */
.alert {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Show the alert */
.alert.show {
    opacity: 1;
}

/* Fade-out effect */
.alert.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}


/* styles.css */
blockquote {
    position: relative;
    padding-left: 20px; /* Space between the blue bar and text */
    margin: 0;
    border-left: 5px solid #00b3ff; /* Blue bar on the left */
    color: #333; /* Text color */
    font-family: 'Arvo';
}

.goals-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.goal-item {
    background-color: #ffffff;
    margin: 10px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

.goal-item h3 {
    font-family: 'Arvo', serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.goal-details {
    font-family: 'DM Sans', sans-serif;
}

.goal-details p {
    margin: 5px 0;
}

.goal-description {
    margin-top: 10px;
    font-family: 'DM Sans', sans-serif;
}

.goal-item hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

/* Centering the goal-section */
.goal-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Center text inside elements */
    margin: 20px 0; /* Add some margin to the top and bottom */
}

/* Styling for the reminder text */
.goal-section p {
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
    font-size: 20px; /* Adjust font size as needed */
    margin: 10px 0; /* Add some margin for spacing */
}

/* Styling for the goal title */
.goal-section h3 {
    font-family: 'Arvo', serif;
    font-size: 24px; /* Adjust font size as needed */
    margin: 10px 0; /* Add some margin for spacing */
}

/* Styling for the remaining days text */
.goal-section .remaining-days {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px; /* Adjust font size as needed */
    margin: 10px 0; /* Add some margin for spacing */
}

/* Container for the filter dropdown */
.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

/* Custom dropdown */
.custom-dropdown {
    position: relative;
    width: calc(100% - 20px); /* Adjust the width based on button size */
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

/* Selected option display */
.custom-dropdown-selected {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dropdown icon */
.dropdown-icon {
    font-size: 12px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

/* Options container */
.custom-dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Each option */
.custom-dropdown-option {
    padding: 10px;
    transition: background-color 0.2s ease;
}

/* Hover state for options */
.custom-dropdown-option:hover {
    background-color: #f0f0f0;
}

/* Active state for the dropdown */
.custom-dropdown.active .custom-dropdown-options {
    display: block;
}

.custom-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* For the <li> elements */
li {
    margin-left: 10px;
    list-style-position: inside;
}

/* For the <hr> tag */
hr {
    border: 0;
    height: 5px;
    background-color: lightgray;
    margin: 10px 0;
    padding: 0;
    width: 95%;
    border-radius: 5px;
}

/* For the page breakdown element (e.g., <hr class="page-breakdown">) */
hr.page-breakdown {
    border: 0;
    border-top: 1px dotted lightgray;
    margin: 10px 0;
    padding: 0;
    width: 95%;
    border-radius: 5px;
}







