
/* PADDING */
/* 4 Werte: padding: 10px 20px 15px 5px; (oben 10px, rechts 20px, unten 15px, Links 5px) */
/* 3 Werte: padding: 10px 20px 15px; (oben 10px, rechts & rinks 20px, unten 15px) */
/* 2 Werte: padding: 10px 20px; (oben & unten 10px, rechts & links 20px) */
/* ------------------------------------ */
/* Aufruf: */
/* <div class="top-buttons"> */
/*      <a href="/Label/_IndexLabel.html" class="btn btn-lb">6450 Labellisten</a> */
/*      <a href="/charts/_IndexCharts.html" class="btn btn-us">US-Charts 1890-2014</a> */
/* </div> */
.top-buttons {
    display: flex;
    gap: 10px;
    margin: 8px 0 16px 0;
}
.top-buttons .btn {                                 /*   */
    padding: 5px 10px;                              /* 2 Werte: oben und unten */
    font-size: 0.75em;                              /* Schriftgröße */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: Arial, sans-serif;
  }
  
.btn-us {                                           /* US-Charts 1890-2014 */          
    background-color: #1e90ff;                      /* Mittelblau */
}
  
.btn-hit {                                          /* Hitparade 1960-2006 */
    background-color: #ff4500;                      /*Orange/Rot */
}
  
.btn-title {                                        /* Titellisten von A bis Z */
    background-color: #2e8b57;                      /* Grün */
}
  
.btn-lb {                                           /* 6450 Labellisten */
    background-color: #ff0000;                      /* Knallrot */
}

.top-buttons .btn:hover {
    opacity: 0.8;
}
.btn-blau {                                         /* Mittelblauer Schalter */          
    background-color: #1e90ff;                      /* Mittelblau */
}
.btn-blau-center {                                  /* Mittelblauer Schalter */          
    background-color: #1e90ff;                      /* Mittelblau */
    text-align:center;
}
.btn-gesamtsuche {                                  /* Mittelblauer Schalter */          
    text-align:center; margin-top:10px;
    display:inline-block;
    background-color:#0078d4;
    color:white;
    padding:5px 10px;              
    border-radius:5px;
    text-decoration:none;
    font-weight:bold;
    font-size:0.75em;
}