
.copyButton {
    display: inline-block;
    margin-bottom: 0.25em;
    padding: 0.125em 0.25em;
    color: #438EB4;
    text-align: center;
    text-decoration: none !important;
    border: 1px solid;
    border-color: #438EB4;
    border-radius: 4px;
    cursor: pointer;
    background-color: white;
    font-size: 14px;
    vertical-align: middle;
}

.copyButton:hover {
    color: #fff;
    background-color: #438EB4 !important;
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 1;
    transition: opacity 0.2s ease-out;
    display: none;
}

.tooltip.fade {
    opacity: 0;
}

.paper-entry {
    /* margin-bottom: 30px; */
    font-family: Arial, sans-serif;
}
.paper-title {
    font-size: 18px;
    font-weight: bold;
    color: #820000; /* 820000 */
    /* margin-bottom: 10px; */
}
.paper-content {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}
.paper-author {
    font-size: 16px;
}
.paper-status {
    font-size: 16px; /* Matches other text */
    font-style: italic; /* Makes it italic */
    color: #923232; /* Sets text color to red */
}
.paper-keyword {
    font-size: 16px;
}
.left-description {
    font-size: 16px;
    flex: 3; /* Adjusts width: 3 parts for description */
    /* padding-right: 20px; */
}
.right-image {
    flex: 2; /* Adjusts width: 2 parts for image */
}
.right-image img {
    width: 100%;
    max-width: 100%; /* Ensures the image fills its container */
}

.gray-list {
    /* Ensures numbers (1, 2, 3) are visible */
    list-style-type: square; 
}
.gray-list li {
    font-size: 15px;
    color: #888888;         /* text color #888888 */
    margin-bottom: 0px;     /* Adjust this value to control spacing */
}
.gray-list li:last-child {
    margin-bottom: -5px;     /* Negative value to shrink spacing further */
}

code {
    font-size: 13px;
    background-color: #f5f5f580; /* Light gray background */
    padding: 2px 4px;          /* Padding around the text */
    border-radius: 3px;        /* Rounded corners */
    font-family: monospace;    /* Monospaced font for code */
    color: #666666;              /* Dark gray font color */
  }

  @media (max-width: 768px) { /* Adjusts layout for screens smaller than 768px */
    .paper-content {
        flex-direction: column; /* Stacks elements vertically */
        align-items: center; /* Centers content */
    }

    .left-description, .right-image {
        width: 100%; /* Ensures full width */
        flex: none; /* Removes flex-based width allocation */
    }

    .right-image {
        margin-top: 10px; /* Adds spacing between text and image */
        text-align: center; /* Centers the image */
    }

    .right-image img {
        max-width: 90%; /* Makes the image responsive */
    }
}

.conference-description {
    font-size: 14px;
    font-weight: 600;
    color: #5f5f5f; 
}

.event-bold {
     /*  color: #820000; font-weight: 600;  */
    /* font-weight: 599; */
    color: #3A3B55;  /* #3A3B55 */
}

.event-gray {
     /*  color: #820000; font-weight: 600;  */
    font-weight: 570;
    color: #888888;  
}

.research-card {
  background-color: #FFFFFF;
  border-radius: 17px;
  padding: 1rem 1rem;
  margin-bottom: 0.7rem;

  /* Absolutely zero standard borders */
  border: none;

  box-shadow: 
    /* 1. THE SHARP WHITE LINE (Inside bottom-right) */
    inset -0.3px -0.3px 0px rgba(255, 255, 255, 1),
    
    /* 2. THE SHARP DARK THIN LINE (Inside bottom-right) */
    inset -1.5px -1.5px 0px rgba(0, 0, 0, 0.08),
    
    /* 3. THE OUTER DARK FADE (Pulled tight so it CANNOT bleed top/left) */
    /* Syntax: Offset X, Offset Y, Blur, Spread (Negative), Color */
    1px 1px 2px -1px rgba(0, 0, 0, 0.08), 
    1px 1px 2px -1px rgba(0, 0, 0, 0.08);
}

/* .research-card:hover {
  box-shadow:
    0 4px 14px rgba(15, 23, 42, 0.10); 
  transform: translateY(-1px);          
} */

.research-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
