html{
    background-color: #f7e7ce;
    margin-top: 60px;
}

body{
    background-color: #f7e7ce;
}

.fixed {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
}
        
.customNav {
    width: 100%;
    height: 60px;
    opacity: 0.95;
    background: #000000;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000000;
}

li {
    float: left;
}

.icon {
    display: none;
    color: #f7e7ce;
}

a {
    align-content: center;
    color: #f7e7ce;
    text-align: center;
    padding: 17px 10px;
    text-decoration: none;
    font-size: 20px;
}

a:hover {
    height: 60px;
    color: green;
    text-decoration: none;
}

.customNav li.active:hover a{
    color:inherit;
}

.right {
    float: right;
    padding-right: 20px;
}

.logoPad {
    color: #f7e7ce;
    font-size: 30px;
    padding-top: 10px;
    padding-left: 10px;
}

.active {
    background-color: #f7e7ce;
    border-radius: 15px;
}

.active:hover {
    color: green !important;
}

#container{
    background-color: #f7e7ce;
    font-size: 50px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

#textNav{
    padding: 10px;
    background-color: #f7e7ce;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

#textNav:hover {
    color: green;
    text-decoration: underline;
}

#back-button{
    padding: 10px;
    background-color: #f7e7ce;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

#back-button:hover {
    color: green;
    text-decoration: underline;
}

#textNavTwo{
    padding: 10px;
    background-color: #f7e7ce;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

#textNavTwo:hover {
    color: green;
    text-decoration: underline;
}

#textNavThree{
    padding: 10px;
    background-color: #f7e7ce;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    font-style: italic;
}

#textNavThree:hover {
    color: green;
    text-decoration: underline;
}

#paragraphText{
    align-content: center;
    font-size: 20px;
    padding-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 10px;
    background-color: #f7e7ce;
    font-family: 'Times New Roman', Times, serif;
    word-wrap: break-word;
}

#articles-list{
    background-color: #f7e7ce !important;
    align-content: center !important;
    font-size: 25px !important;;
    color: black !important;
    align-content: center !important;
    float: left !important;
}

#article-content{
    background-color: #f7e7ce !important;
    align-content: center !important;
    font-size: 25px !important;;
    color: black !important;
    align-content: center !important;
    float: left !important;
}

#articleCss{
    padding: 10px;
    background-color: #f7e7ce !important;;
    font-size: 25px !important;
    font-family: 'Times New Roman', Times, serif !important;;
    font-style: italic !important;
    color: black !important;
}

#articleCss:hover{
    color: green !important;
}

#text-editor {
    margin-bottom: 20px;
    padding: 15px; /* Adds padding around the text fields */
}

.text-field {
    width: 90% !important;
    height: 200px !important;
    margin: 20px !important;
    padding: 10px !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 20px !important;
    outline: none !important; /* Removes focus outline */
    box-sizing: border-box !important; /* Includes padding and border in the element's total width and height */
}

.subhead {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Base style for the button */
#add-paragraph-btn {
    background-color: #007BFF;  /* Vibrant blue background */
    color: white;               /* White text */
    border: none;               /* No border */
    padding: 10px 20px;         /* Padding around the text */
    font-size: 16px;            /* Text size */
    font-weight: bold;          /* Bold text */
    border-radius: 5px;         /* Rounded corners */
    cursor: pointer;            /* Pointer cursor on hover */
    outline: none;              /* Removes outline */
    transition: all 0.3s ease;  /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); /* Subtle shadow for 3D effect */
}

/* Hover state for the button */
#add-paragraph-btn:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.5); /* Larger shadow for raised effect */
}

/* Active state for the button */
#add-paragraph-btn:active {
    background-color: #004085; /* Even darker blue when the button is clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Smaller shadow to simulate pressing */
    transform: translateY(2px); /* Slight downward movement to simulate pressing */
}

/* Base style for the button */
#create-article-btn {
    background-color: #007BFF;  /* Vibrant blue background */
    color: white;               /* White text */
    border: none;               /* No border */
    padding: 10px 20px;         /* Padding around the text */
    font-size: 16px;            /* Text size */
    font-weight: bold;          /* Bold text */
    border-radius: 5px;         /* Rounded corners */
    cursor: pointer;            /* Pointer cursor on hover */
    outline: none;              /* Removes outline */
    transition: all 0.3s ease;  /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3); /* Subtle shadow for 3D effect */
}

/* Hover state for the button */
#create-article-btn:hover {
    background-color: #0056b3; /* Darker shade of blue on hover */
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.5); /* Larger shadow for raised effect */
}

/* Active state for the button */
#create-article-btn:active {
    background-color: #004085; /* Even darker blue when the button is clicked */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Smaller shadow to simulate pressing */
    transform: translateY(2px); /* Slight downward movement to simulate pressing */
}