/* Global Styles */
body {
    background-color: #fff;
    font-family: OpenSans, Arial, Helvetica;
    margin: 0;
}

h1, h3 {
    color: #3e3e3e;
    font-weight: normal;
    margin-bottom: 20px;
}

p {
    color: #585858;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 20px;
}

a {
    color: #b56916;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.icon {
    width: 50px;
    height: 50px;
    background-color: #f7941f;
    color: white;
    font-size: 2.0em;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    line-height: 1;              /* Prevent vertical stretch */
    padding: 0;
    box-sizing: border-box;
}

.icon::before {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;         /* This is crucial */
    margin-top:8px;
}
/* New Banner Style */
.new-banner {
    display: inline-block;
    background-color: lightblue; /* Bright yellow for visibility */
    color: #000; /* Black text for contrast */
    font-size: 0.8em;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 10px;
    text-transform: uppercase;
    transform: rotate(-10deg);
}

/* Item Layout */
.item {
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    margin-bottom: 40px;
    width: 100%;
   
}

.item_not_bottom{
    border-bottom: 0.5px solid #ccc;
}


.item div {
    display: flex;
    flex-direction: column; /* Stack title and description vertically */
}

.item b {
    margin: 0;
    text-align: left;
    display: block;
    line-height: 1.5;
}

.item p {
    margin: 5px 0 0;
    text-align: left;
    line-height: 1.5;
}

/* Data Request Section */
#data-request {
    display: block;
    width: 100%;
    border-top: 0.1em solid #b56916;
    border-bottom: 2px solid whitesmoke;
    padding: 2em 0;
    margin: 2em 0;
}

#citation-box {
    margin-top: 0;
    padding: 5px 10px;
    border: 1px solid #ccc;
}

p.box-header {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    border-bottom: 1px solid lightgray;
    background-color: antiquewhite;
}

.justified {
    text-align: justify;
    text-justify: inter-word;
}

.citation {
    font-style: italic;
    color: #666666;
    font-size: 0.9em;
}

.icon-link {
    text-decoration: none; /* Remove underline from links */
    display: inline-block; /* Ensure proper alignment */
    
}

.icon-link:hover .icon {
    background-color: #b56916; /* Change background color on hover */
}
