/* ------------------------------------------
   Call Sign Page - Updated for a modern look
------------------------------------------- */
.callSignOuter {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    color: #333;
}

.fullCallSign {
    font-size: 1em;
    line-height: 2.2em;
    border: 2px solid #eeeeee;
    border-radius: 15px;
    padding: 40px 20px;
    margin: 20px 0;
    color: #333;
}

.fullCallSign-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.callSign-image {
    margin: 20px auto;
    display: block;
    max-width: 120px;
}

.callSign {
    color: #bd4200;
    font-weight: bold;
    font-size: 1.8em;
    margin-top: 15px;
    display: block;
}

.callSign-new {
    margin: 30px 0;
}

ul.bookmarksStatic {
    list-style-type: none;
    padding: 30px 50px;
    margin: 0 80px;
    text-align: center;
    clear: both;
    font-size: 14px;
    background: #FFFACD;
    border-radius: 10px;
    border: solid 1px #FAFAD2;
}

ul.bookmarksStatic li {
    list-style-type: none;
    line-height: 24px;
    display: inline-block;
    padding: 0;
    margin: 0 15px;
    color: #555;
}

ul.bookmarksStatic li a {
    text-decoration: none;
    color: #0073aa;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

ul.bookmarksStatic li a:hover {
    color: #ff6600;
}

ul.bookmarksStatic li a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
}

ul.bookmarksStatic li a[name="fb_share"]::before {
    content: "\f09a";
    /* Font Awesome icon for Facebook */
}

ul.bookmarksStatic li a[href*="twitter.com"]::before {
    content: "\f099";
    /* Font Awesome icon for Twitter (formerly known as X) */
}

.callSign-nudge {
    padding: 20px 40px 0;
    font-size: .8em;
}

/* Form Styles */
.callSignOuter form {
    margin: 0 auto;
    background: #abb8c3;
    padding: 40px;
    border-radius: 10px;
}

.callSignOuter form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    text-align: left;
}

.callSignOuter form input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #FFF;
    border-radius: 5px;
    font-size: 1em;
}

.callSignOuter form input[type="submit"] {
    background: rgb(6, 106, 171);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
    text-align: left;
    display: table;
}

.callSignOuter form input[type="submit"]:hover {
    background: #a83800;
}

.total-call-signs {
    font-size: 12px;
}

.total-call-signs p {
    margin: 40px 0 0;
}

header .total-call-signs,
header .total-call-signs b {
    color: #CCC;
    margin: 15px 0;
    text-align: center;
}

header .total-call-signs a {
    color: #bd4200;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header .total-call-signs a:hover {
    color: #ff6600;
}

.total-call-signs .fas {
    padding: 0 10px;
    font-size: .6em;
    vertical-align: middle;
}

.total-call-signs i:nth-of-type(2) {
    transform: scaleX(-1);
}


/* Sound effect styling */
.soundEffect {
    margin: 45px 0 0;
    text-align: center;
    font-size: 0.9em;
    color: #777;
}

.soundEffect iframe {
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.soundEffect iframe:hover {
    transform: scale(1.02);
}