html {
    background-color: lightgray;
}

header {
    text-align: center;
    line-height: 20px;
    font-family: Arial, 'Times New Roman', Times, serif;
    color: #2c3e50; /* Dark slate gray for professional header text */
    margin-top: 20px;
}

header h1 {
    font-size: 45px;
    color: #34495e; /* Darker blue-gray for name */
}

header h2 {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    letter-spacing: 8px;
    color: #7f8c8d; /* Light gray for subtitle */
}

.divider-one {
    border: 2px solid #34495e; /* Dark blue-gray for primary divider */
    margin-top: 10px;
    margin-bottom: 10px;
}

.divider-two {
    border: 2px solid #bdc3c7; /* Light gray for secondary divider */
    margin-top: 10px;
    margin-bottom: 10px;
}

address ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

address ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 3px;
    font-style: normal;
}

body {
    width: 1000px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    -moz-box-shadow: inset 0 0 10px #777777;
    -webkit-box-shadow: inset 0 0 10px #777777;
    box-shadow: inset 0 0 10px #777777;
    background-color: white;
}

.profsum {
    width: 600px;
    text-align: justify;
}

.work-experience {
    width: 600px;
    text-align: justify;
}

.side-bar {
    width: 350px;
    float: right;
    background-color: #ecf0f1; /* Light gray background for sidebar */
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

.education {
    line-height: 3px;
}
.job {
    line-height: 3px;
}

.skills-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.milserv{
    line-height: 3px;
}

.groups {
    line-height: 3px;
}

.remove-space {
    margin-bottom: 0;
}

/*Style for Download Button*/
.btn {
    background-color: #3498db; /* Professional blue */
    border: none;
    color: white;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 20px;
}

/*Darker background on mouse-over*/
.btn:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* CSS styling for Coast Guard Awards hover over descriptions */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip-text {
    visibility: hidden;
    width: 260px;
    background-color: #34495e; /* Dark blue-gray for tooltips */
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1024px) {
    body {width: 100%; margin: 0;}
    nav ul {flex-direction: column; align-items: flex-start;}
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 56px;
    background-color: lightgrey;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

button a {
    text-decoration: none;
    color: black;
}