fieldset { border:none; clear:both;}
fieldset label {font-size:14px; font-weight:bold; color:#666;}
fieldset label a{font-size:14px; font-weight:bold; color:#666;}

legend {
    margin-bottom: 20px;
    font-weight: bold;
    text-decoration: underline;
}
dl {clear:both; }
dl.submit {clear:both; width:100%; text-align:center; padding:0 0 0 90px;}

dt {float:left; text-align:right; width:150px; padding:0 10px 10px 0;}
dd {float:left;  margin:0 0 10px 0;}
dt small {display: block; font-size:12px; }

input,
textarea,
select {
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;  
  padding: 5px;
  color: #777;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: 0px;
}

.errorText {text-align:right; clear:both; display:block; color:#FE3131; display:none; font-size:11px; line-height:12px;}

div.box {
  width: 425px;
  font-weight: normal;
  padding: 7px;
  margin: 5px 15px 5px 15px;
  color: #777;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: 0;  
}

div.box h4 {
    text-align: right;
    background-color: #7bd1e5;
    padding-right: 15px;
    letter-spacing: 4px;
    text-transform:uppercase;
    font-family:monospace;
    margin-bottom: 10px;
}

/* for validation */
.error {
   color:lightcoral;
   display: block;
}


#langSwitcher {
    width: 75px;
    height: 25px;
    padding: 0px;
    margin:10px 0 0 0;
    background-color: #323332;
    border:3px solid #fff;
    color:#fff;
}


a.ovalbutton{
background: transparent url('../images/buttons/oval-orange-left.gif') no-repeat top left;
display: block;
float: left;
font: normal 13px Tahoma; /* Change 13px as desired */
line-height: 16px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
height: 24px; /* Height of button background height */
padding-left: 11px; /* Width of left menu image */
text-decoration: none;
}

a:link.ovalbutton, a:visited.ovalbutton, a:active.ovalbutton{
color: #494949; /*button text color*/
}

a.ovalbutton span{
background: transparent url('../images/buttons/oval-orange-right.gif') no-repeat top right;
display: block;
padding: 4px 11px 4px 0; /*Set 11px below to match value of 'padding-left' value above*/
}

a.ovalbutton:hover{ /* Hover state CSS */
background-position: bottom left;
}

a.ovalbutton:hover span{ /* Hover state CSS */
background-position: bottom right;
color: black;
}

/* Modern button replacements for old image-based buttons */
.learnMore, .buyNow, .readMore, .hireNow, .joinUs, .signUpButton, .inviteFriendButton, .logIn, .signIn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #ff8533 0%, #ff6600 100%);
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.learnMore:hover, .buyNow:hover, .readMore:hover, .hireNow:hover, .joinUs:hover,
.signUpButton:hover, .inviteFriendButton:hover, .logIn:hover, .signIn:hover {
    background: linear-gradient(180deg, #ff6600 0%, #e65c00 100%);
    color: #fff !important;
}
.sendButton, .clearButton {
    display: inline-block;
    padding: 10px 20px;
    background: #00a0d2;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.sendButton:hover { background: #0088b5; }
.clearButton { background: #999; }
.clearButton:hover { background: #777; }
.cancel {
    display: inline-block;
    padding: 10px 20px;
    background: #e74c3c;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.cancel:hover { background: #c0392b; }

/* ==========================================================================
   AudioPlayer - Global sticky audio player bar
   ========================================================================== */
.audio-player-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 9999;
    transition: bottom 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
.audio-player-bar.active {
    bottom: 0;
}
body.player-bar-active {
    padding-bottom: 60px;
}

/* Track info - left side */
.player-track-info {
    width: 200px;
    min-width: 150px;
    overflow: hidden;
}
.player-track-info .track-title {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.player-track-info .track-title i {
    color: #ff6600;
    margin-right: 6px;
}
.player-track-info .track-subtitle {
    font-size: 11px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Center - controls and progress */
.player-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}
.player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.player-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}
.player-btn:hover {
    background: rgba(255,255,255,0.1);
}
.player-btn:disabled {
    color: #666;
    cursor: not-allowed;
}
.player-btn.play-pause {
    font-size: 18px;
    background: #ff6600;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.player-btn.play-pause:hover {
    background: #ff8533;
}
.player-btn.player-seek-back,
.player-btn.player-seek-fwd {
    font-size: 12px;
    display: none; /* Hidden by default, shown when audio > 10s */
}
.player-btn.player-seek-back span,
.player-btn.player-seek-fwd span {
    font-size: 10px;
    font-weight: 600;
}
.player-btn.player-seek-back.visible,
.player-btn.player-seek-fwd.visible {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.player-btn.player-close {
    color: #999;
}
.player-btn.player-close:hover {
    color: #fff;
    background: rgba(255,0,0,0.2);
}

/* Progress bar */
.player-progress {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    gap: 10px;
}
.player-progress .time {
    font-size: 11px;
    color: #999;
    min-width: 35px;
    font-family: monospace;
}
.player-progress .time-current {
    text-align: right;
}
.progress-bar-wrap {
    flex: 1;
    height: 4px;
    background: #555;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.progress-bar-wrap:hover {
    height: 6px;
}
.progress-bar-fill {
    height: 100%;
    background: #ff6600;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Right side - playlist info and close */
.player-actions {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.playlist-info {
    font-size: 12px;
    color: #999;
}
