.headline-block {
    text-align: center;
}

.perex-block {
    margin: 0.5rem;
    font-weight: bold;
    font-size: 1.3rem;
}

.rcv-header {
    position: relative;
    padding: 1rem 2rem;
    height: 4rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.rcv-header-buttons {
    position: relative;
    top: 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.rcv-header h1 {
    margin: 0;
    width: 100%;
}
  
.copy-button {
    background-color: #201169;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
  
.copy-button:hover {
    background-color: #3e21ca;
}
  
.copy-button:active {
   transform: translateY(-50%) scale(0.95);
}

.rcv-disclaimer {
    font-style: italic;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background-color: #201169;
    color: white;
    border: none;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 8px 8px;
    cursor: pointer;
    border-radius: 4px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #201169;
    min-width: 135px;
    z-index: 1000;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dropdown-item {
    display: inline-block;
    margin: 4px;
    text-align: center;
}

.dropdown-item img, .dropdown-toggle img {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.dropdown.show .dropdown-menu {
    display: block;
}