@import url('https://fonts.googleapis.com/css2?family=Signika&display=swap');

body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1.5;
    padding-left: 20px;
}

.wrapper {
    display: flex;
    height: 100vh;
}

.side-panel {
    font-family: 'Signika', sans-serif;
    display: none;
    width: 400px;
    flex-shrink: 0;
    padding: 20px;
    margin-left: 20px;
    color: #ffffff;
    background: #979797;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    height: 100vh; /* Full height */
    overflow-y: auto; /* Add scroll if necessary */
}

.side-panel-open .side-panel {
    display: block;
}

.side-panel hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

#contactProfilePhoto {
    width: 100px; /* Or any other size */
    height: 100px; /* Or any other size */
}

.social-media-section {
    background-color: #f5f5f5; /* Off-white background */
    border: 0px solid gray; /* Gray border */
    border-radius: 10px; /* Rounded corners */
    padding: 10px; /* Some padding */
}

.social-media-section a {
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
}

.social-media-section h3 {
    color: black;
}

.sources-section {
    background-color: #f5f5f5; /* Off-white background */
    border: 0px solid gray; /* Gray border */
    border-radius: 10px; /* Rounded corners */
    padding: 10px; /* Some padding */
}

.sources-section h3 {
    color: black;
    display: flex; /* Use flexbox for easy alignment */
}

.sources-section h4 {
    color: black;
    cursor: pointer; /* Change cursor to pointer when hovering over headers */
    display: flex; /* Use flexbox for easy alignment */
    align-items: center; /* Center items vertically */
}

.sources-section h4 .material-icons {
    margin-right: 5px; /* Add some space between the icon and the text */
}

.sources-section div p {
    display: none; /* Hide paragraphs by default */
}

.sources-section div.open p {
    display: block; /* Show paragraphs when their parent has the 'open' class */
}

.sources-section p {
    display: block; /* Show paragraphs when their parent has the 'open' class */
    font-weight: 400;
    font-size: 12px;
    color: black;
    word-wrap: break-word;
}