/* Audiosexual Stylesheet - Retro 90s/Early 2000s Style */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
    background-color: #C0C0C0;
    background-image: url('background.png?v=2');
}

.container {
    width: 800px;
    margin: 0 auto;
    padding: 0;
    background-color: #FFFFFF;
    border: 3px outset #C0C0C0;
}

header {
    background-color: #000080;
    background-image: repeating-linear-gradient(45deg, #000080, #0000AA 10px, #000080 10px);
    color: #FFFFFF;
    padding: 15px;
    border-bottom: 3px inset #000080;
}

header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #000000;
    font-weight: bold;
}

header h1 a {
    color: #FFFF00;
    text-decoration: none;
}

header h1 a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

nav {
    margin-top: 10px;
    background-color: #000080;
    padding: 5px;
}

nav a {
    color: #FFFFFF;
    text-decoration: underline;
    margin-right: 15px;
    padding: 3px 8px;
    display: inline-block;
    background-color: #0000AA;
    border: 1px outset #0000AA;
}

nav a:hover {
    background-color: #0000FF;
    border: 1px inset #0000AA;
    color: #FFFF00;
}

nav a:active {
    border: 1px inset #0000AA;
}

main {
    background-color: #FFFFFF;
    padding: 20px;
    margin: 0;
    border: none;
}

section {
    margin-bottom: 30px;
    border: 2px inset #C0C0C0;
    padding: 15px;
    background-color: #F0F0F0;
}

section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000080;
    border-bottom: 2px solid #000080;
    padding-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #800080;
    font-weight: bold;
}

.track-list {
    list-style: none;
}

.track-item {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #FFFFFF;
    border: 2px outset #C0C0C0;
    border-left: 5px solid #0000FF;
}

.track-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000080;
}

.track-item h3 a {
    color: #0000FF;
    text-decoration: underline;
}

.track-item h3 a:hover {
    color: #FF0000;
    text-decoration: none;
}

.track-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #000080;
}

.track-item h4 a {
    color: #0000FF;
    text-decoration: underline;
}

.track-item h4 a:hover {
    color: #FF0000;
    text-decoration: none;
}

.artist-name {
    color: #000000;
    margin-bottom: 10px;
    font-size: 12px;
}

.artist-name a {
    color: #0000FF;
    text-decoration: underline;
}

.artist-name a:hover {
    color: #FF0000;
    text-decoration: none;
}

audio {
    width: 100%;
    margin-top: 10px;
    border: 2px inset #C0C0C0;
}

.artist-grid {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.artist-card {
    display: table-cell;
    width: 30%;
    vertical-align: top;
    padding: 15px;
    background-color: #FFFFFF;
    border: 2px outset #C0C0C0;
    border-left: 5px solid #FF00FF;
}

.artist-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #800080;
}

.artist-card h3 a {
    color: #800080;
    text-decoration: underline;
}

.artist-card h3 a:hover {
    color: #FF0000;
    text-decoration: none;
}

.artist-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #800080;
}

.artist-card h4 a {
    color: #800080;
    text-decoration: underline;
}

.artist-card h4 a:hover {
    color: #FF0000;
    text-decoration: none;
}

.artist-card p {
    color: #000000;
    font-size: 11px;
    line-height: 1.4;
}

footer {
    text-align: center;
    padding: 15px;
    color: #000000;
    font-size: 10px;
    background-color: #C0C0C0;
    border-top: 3px inset #C0C0C0;
}

/* Form styles */
.form-container {
    width: 500px;
    margin: 0 auto;
    background-color: #F0F0F0;
    padding: 20px;
    border: 2px inset #C0C0C0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000080;
    font-size: 12px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="file"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 5px;
    border: 2px inset #C0C0C0;
    font-size: 12px;
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
}

.form-group textarea {
    height: 100px;
}

.form-group input[type="file"] {
    padding: 3px;
}

.btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #0000FF;
    color: #FFFFFF;
    text-decoration: none;
    border: 2px outset #0000FF;
    cursor: pointer;
    font-size: 12px;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.btn:hover {
    background-color: #0000AA;
    border: 2px inset #0000AA;
}

.btn:active {
    border: 2px inset #0000AA;
}

.btn-danger {
    background-color: #FF0000;
    border: 2px outset #FF0000;
}

.btn-danger:hover {
    background-color: #AA0000;
    border: 2px inset #AA0000;
}

.btn-success {
    background-color: #00AA00;
    border: 2px outset #00AA00;
}

.btn-success:hover {
    background-color: #008800;
    border: 2px inset #008800;
}

.alert {
    padding: 12px;
    margin-bottom: 15px;
    border: 2px outset #C0C0C0;
    font-size: 12px;
}

.alert-success {
    background-color: #90EE90;
    border-color: #00AA00;
    color: #000000;
}

.alert-error {
    background-color: #FFB6C1;
    border-color: #FF0000;
    color: #000000;
}

.album-info {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #F0F0F0;
    border: 2px inset #C0C0C0;
}

.album-info h2 {
    margin-bottom: 10px;
    color: #000080;
}

.album-info p {
    color: #000000;
    margin-bottom: 8px;
    font-size: 12px;
}

.track-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    border: 2px outset #C0C0C0;
}

.track-table th,
.track-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #C0C0C0;
    font-size: 12px;
}

.track-table th {
    background-color: #000080;
    color: #FFFFFF;
    font-weight: bold;
    border: 1px inset #000080;
}

.track-table tr {
    background-color: #FFFFFF;
}

.track-table tr:hover {
    background-color: #E0E0E0;
}

.track-table td a {
    color: #0000FF;
    text-decoration: underline;
}

.track-table td a:hover {
    color: #FF0000;
    text-decoration: none;
}

.download-link {
    color: #00AA00;
    text-decoration: underline;
    font-weight: bold;
}

.download-link:hover {
    color: #FF0000;
    text-decoration: none;
}

.bio-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #F0F0F0;
    border: 2px inset #C0C0C0;
}

.bio-section h2 {
    margin-bottom: 10px;
    color: #000080;
    font-size: 20px;
}

.bio-section h3 {
    margin-bottom: 10px;
    color: #000080;
    font-size: 16px;
}

.bio-section p {
    color: #000000;
    line-height: 1.6;
    font-size: 12px;
}

.dashboard-menu {
    margin-bottom: 20px;
}

.dashboard-menu a {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 10px;
    background-color: #0000FF;
    color: #FFFFFF;
    text-decoration: none;
    border: 2px outset #0000FF;
    font-size: 12px;
    font-weight: bold;
}

.dashboard-menu a:hover {
    background-color: #0000AA;
    border: 2px inset #0000AA;
}

.dashboard-menu a:active {
    border: 2px inset #0000AA;
}

.genre-section {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #FFFFFF;
    border: 2px outset #C0C0C0;
}

.genre-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #800080;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #800080;
    padding-bottom: 5px;
}
