/*
 * Girl Hacker Neon Theme (Dark, High Contrast, Monospace)
 * Based on original Futaba-Eki structure with a Cyberpunk aesthetic.
 */

/* 1. Define the Fade In Animation */

body {
    /* Base Colors & Layout */
    background: #0D001A; /* Very dark purple/black base */
    color: #00FF99; /* Neon Green (standard terminal color) */
    font-size: 12pt;
    font-family: 'Monospace', 'Consolas', monospace; 

  
            animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        
}
 @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }
/* Links: Vibrant Purple/Pink */
a {
    background: inherit;
    color: #FF00FF; /* Neon Pink/Purple */
    text-decoration: underline;
    font-family: inherit;
}
a:visited {
    background: inherit;
    color: #FF00FF;
    text-decoration: underline;
    font-family: inherit;
}
/* Hover: Hot Pink/Red for interaction */
a:hover, .admddel, .admbban, .admppost, .admaacc {
    color: #FF0752 !important; /* Hotter Pink/Red */
    background: inherit;
    text-decoration: underline;
    font-family: inherit;
}
/* Reflinks: Subtle, blends with the main text color */
.reflink, .reflink:visited {
    color: #00CC77; /* Slightly darker green */
    text-decoration: none;
    font-weight: bold;
}
.reflink:hover {
    color: #00FF99; /* Bright green on hover */
    text-decoration: none;
}

/* Images: Neon Pink border with a subtle glow */
img {
    margin: 4px 10px 10px 10px;
    border: 3px solid #FF00FF; 
    box-shadow: 0 0 10px #FF00FF; 
    float: left;
    clear: none;
}
td {
    text-align: left;
}
.adminbar {
    text-align: right;
    background: inherit;
    float: right;
    font-weight: bold;
    border-bottom: 2px dashed #FF00FF; /* Pink dashed separator */
    padding-bottom: 5px;
}
.styles {
    float: left;
}
/* Logo/Title: Large neon pink text with glow */
.logo {
    clear: both;
    text-align: center;
    background: inherit;
    font-size: 28pt;
    color: #FF00FF; 
    text-shadow: 0 0 10px #FF00FF; 
    width: 100%;
    margin: 20px 0;
}
.logo img {
    margin: 0 auto;
    clear: both;
    float: none;
    border: none;
    box-shadow: none;
}
/* Table Header */
.theader {
    background: #FF00FF; /* Neon Pink background */
    color: #0D001A; /* Dark text on bright background */
    width: 100%;
}
.postarea {
    background: inherit;
    border: 1px solid #00FF99; /* Green outline for posting area */
    padding: 10px;
}
.rules {
    font-size: 10px;
    font-family: inherit;
    color: #AAAAAA; 
}
/* Post Block/Form Input Headers */
.postblocktitle, .postblock {
    background: #1A0029; 
    text-align: left;
    color: #00FF99; 
    font-weight: 400; 
    border: 1px solid #FF00FF; 
    padding: 2px 5px;
}
.footer {
    text-align: center;
    font-size: 12px;
    font-family: inherit;
    margin-top: 45px;
    color: #00CC77; 
    border-top: 2px solid #00FF99; 
    padding-top: 10px;
}
.passvalid {
    background: #FF00FF;
    text-align: center;
    width: 100%;
    color: #0D001A;
}
.dellist, .delbuttons {
    background: inherit;
    text-align: center;
    padding-bottom: 4px;
}
/* Management UI (Row colors for data) */
.managehead {
    background: #00FF99;
    color: #0D001A;
    font-family: inherit;
    font-size: 14px;
    padding: 0px;
}
.postlists {
    background: #1A0029;
    width: 100%;
    padding: 0px;
    color: #00FF99;
}
.row1 {
    background: #2D0047; /* Darker alt row */
    font-family: inherit;
    font-size: 12px;
    color: #00FF99;
}
.row2 {
    background: #1A0029; /* Dark alt row */
    font-family: inherit;
    font-size: 12px;
    color: #00FF99;
}
/* Quoted Text (Same as traditional boards) */
.unkfunc {
    background: inherit;
    color: #789922; 
}
.filesize {
    font-size: 12pt;
    font-family: inherit;
    text-decoration: none;
    padding-right: 10px;
    margin-left: 10px;
    color: #FF00FF; 
}
/* File Title: Emphasis with neon pink */
.filetitle {
    background: inherit;
    font-size: 14pt;
    font-family: inherit !important;
    color: #FF00FF !important; 
    font-weight: bold;
}
/* Poster Name: Vibrant Green for emphasis */
.postername {
    background: inherit;
    font-size: 14pt;
    font-family: inherit;
    color: #00FF99;
    font-weight: bold;
}
/* Omitted Posts and Old Post Titles */
.oldpost, .omittedposts {
    background: inherit;
    font-size: 12pt;
    font-family: inherit;
    color: #FF0752; /* Hot Pink */
    font-weight: bold;
    margin-left: 30px;
}
/* Reply Box: Dark, distinct background with dashed border */
.reply {
    background: #1A0029; 
    color: #00FF99;
    font-family: inherit;
    min-width: 500px;
    border: 1px dashed #FF00FF; 
    padding: 10px;
}
.doubledash {
    vertical-align: top;
    clear: both;
    float: left; /* Keep this if it's necessary for layout */
    color: #FF00FF; /* Pink double dash */
}
/* Reply Title: Match the file title style */
.replytitle {
    background: inherit;
    font-size: 14pt;
    font-family: inherit;
    color: #FF00FF;
    font-weight: bold;
}
.commentfile {
}
.commentpostername {
    background: inherit;
    font-size: 14pt;
    font-family: inherit;
    color: #00FF99;
    font-weight: bold;
}
.thumbnailmsg {
    background: inherit;
    font-size: 9px;
    font-family: inherit;
    color: #FF00FF; 
    padding-right: 5px;
}
.leftclear {
    clear: left;
}
.allclear {
    clear: both; /* Changed from 'all' for broader compatibility */
}
.nowrap {
    white-space: nowrap;
}
.centered {
    text-align: center;
}
.lefted {
    text-align: left;
}
.righted {
    text-align: right;
    float: right;
    color: #00FF99;
}
.manabuttons {
    text-align: center;
    padding-top: 6px;
}
/* Catalog View */
.cattable {
    border-color: #00FF99;
    border-style: solid;
    border-width: 1px;
}
.catthread {
    display: inline-block;
    float: none;
    max-width: 160px;
    max-height: 180px;
    width: 160px;
    height: 180px;
    border-color: #FF00FF;
    border-style: inset;
    border-width: 1px;
    text-align: center;
    font-size: 12px;
    padding-top: 4px;
    vertical-align: top;
    margin: 2px;
    background: #1A0029;
}
.cata {
    text-decoration: none !important;
    color: #FF00FF !important;
}
.catthumb {
    max-width: 160px;
    max-height: 160px;
    width: auto;
    height: auto;
}
.cattitle, .cattitle:hover {
    text-decoration: none;
    font-size: 12px;
    color: #00FF99;
}
.catcont {
    word-wrap: break-word;
}
.catthread img {
    max-height: 40%;
    max-width: 99%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
    border: none;
    box-shadow: none;
}
.cattable {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
form table {
    /* No change needed */
}
/* Error Message */
#errormsg {
    color: #FF0752; 
    text-align: center;
    font-size: 20pt;
    font-weight: bold;
    border: 3px double #FF0752;
    padding: 15px;
}
