/* extrainfo.css */

/* General styling for the container */
.mt-2 {
    margin-top: 0.5rem; /* Equivalent to Tailwind's mt-2 */
}

.p-4 {
    padding: 1rem; /* Equivalent to Tailwind's p-4 */
}

.rounded-md {
    border-radius: 0.375rem; /* Equivalent to Tailwind's rounded-md */
}

.border {
    border-width: 1px; /* Equivalent to Tailwind's border */
}

.border-green-200 {
    border-color: #bbf7d0; /* Light green for borders */
}

.bg-green-50 {
    background-color: #f0fdf4; /* Very light green for background */
}

/* Styling for the text inside the container */
.text-sm {
    font-size: 0.875rem; /* Equivalent to Tailwind's text-sm */
    line-height: 1.25rem; /* Equivalent to Tailwind's text-sm */
}

.text-green-700 {
    color: #15803d; /* Dark green for text */
}

/* Styling for the image */
img {
    display: inline-block; /* Ensures the image is inline with text */
    vertical-align: middle; /* Aligns the image vertically with text */
}

/* Styling for the link */
a {
    text-decoration: none; /* Removes underline from the link */
    color: inherit; /* Inherits the text color */
}


/* extra button */

.xb-btn {
    display: inline-block;
    padding: 0.5rem 0.5rem; /* Adjust padding as needed */
    background-color: #16a34a; /* Twitter's brand color */
    color: white; /* Text color */
    border-radius: 0.375rem; /* Rounded corners */
    text-align: center;
    font-weight: 500; /* Medium font weight */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.2s; /* Smooth transition for hover effect */
    margin-right: 0.5rem; /* Add some spacing between buttons */
    margin-bottom: 0.5rem;
}

.xb-btn:hover {
    background-color: #15803d; /* Slightly darker shade for hover effect */
}


/* extra information */
.xi {
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #bbf7d0;
    background-color: #f0fdf4;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #15803d;
}
