/* ===== GLOBAL ===== */

body {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #000;
    background-color: #000066;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
}

p {
    font-size: 14px;
    color: #000;
}

p.small {
    font-size: 12px;
}

p.photos {
    font-size: 11px;
    text-transform: uppercase;
    text-align: center;
}

p.footer {
    font-size: 11px;
}

/* ===== HEADINGS ===== */

h1 {
    color: #000066;
    font-size: 20px;
    text-align: center;
    margin: 5px 0;
}

h2 {
    color: #000066;
    font-size: 18px;
    text-align: left;
    background-color: #eeeeee;
    padding: 5px;
}

h3 {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.3em;
    background-color: #000066;
    background-image: url("../graphx/cellbackblue.jpg");
    text-transform: uppercase;
    padding: 5px;
}

/* ===== TEXT & LISTS ===== */

blockquote {
    background: #eeeeee;
    padding: 10px;
    text-align: left;
}

ol {
    font-size: 14px;
}

li {
    font-size: 14px;
    margin-bottom: 10px;
}

li.file {
    text-transform: uppercase;
    color: #660000;
    text-align: left;
}

/* ===== LINKS ===== */

a {
    font-size: 14px;
    text-decoration: none;
    color: #660000;
}

a:visited {
    color: #000066;
}

a:hover {
    text-decoration: underline;
}

a.menu {
    color: #ffffff;
}

a.admin:hover {
    color: #dddddd;
}

/* ===== NAME STYLE ===== */

a.name2 {
    font-size: 16px;
    letter-spacing: 0.08em;
}

/* ===== BUTTON STYLE ===== */

a.LinkButton {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    padding: 6px 12px;
    border: 1px solid #000;
    border-radius: 5px;
    background: #ffcc33;
    background-image: url("../graphx/cellback.jpg");
}

a.LinkButton:hover {
    color: #0000ff;
}

/* ===== PHOTO DIRECTORY BUTTON ===== */

a.picsubdir {
    display: inline-block;
    background-color: #eeeeee;
    padding: 5px 12px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* ===== TABLE LAYOUT ===== */

table.mainbody {
    margin: auto;
    max-width: 1000px;
    width: 95%;
    font-size: 14px;
    background: #ffffff;
    border-spacing: 0;
}

td.mainbody {
    padding: 10px;
    background: #ffffff;
}

td.header {
    color: #eeeeee;
}

td.menu {
    text-align: center;
    padding: 8px 0;
}

td.footer {
    font-size: 12px;
    background: #ffffff;
}

/* ===== TABLE ROW STYLES ===== */

tr.rowheader {
    font-size: 14px;
    color: #000066;
    background-color: #eeeeee;
}

tr.dir,
tr.file {
    text-transform: uppercase;
}

/* ===== COURSES TABLE ===== */

/* 1. Combined table settings */
table.courses {
    padding-left: 25px;
    padding-right: 10px;
    border-spacing: 0; 
}

/* 2. Style for ALL cells in the courses table */
table.courses td {
    padding-bottom: 5px;
    vertical-align: top;
}

/* 3. The "Bullet" logic: applies ONLY to the very first cell of each row */
table.courses td:first-child::before {
    content: "•";
    padding-right: 10px;
    color: #000066; 
    font-weight: bold;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {

    body {
        text-align: left;
        padding: 10px;
    }

    table.mainbody {
        width: 100%;
    }

    h1 {
        font-size: 18px;
    }

    h2 {
        font-size: 16px;
    }

    h3 {
        font-size: 15px;
    }

    a.LinkButton {
        font-size: 14px;
        padding: 8px 10px;
    }
}