/* External Styles */
body {
    margin:0 auto !important;
    background-color: #fff !important;
    font-family: 'cairo', sans-serif;
    
}
a:hover {
    text-decoration: underline;
    color: #0056b3; /* Change color on hover */
}
#contact{
    border:solid 1px #000 !important;
}
/* Embedded Styles */
header {
 
    color: white;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
}

section img {
    width: 150px;
    height: 200px;
    margin: 10px;
    float: left;
}

/* Add more styling as needed */



/* Add this CSS code to styles.css */

/* Form styling */
form {
    max-width: 660px;
    font-family:cairo;
}

label {
    display: block;
    margin-bottom: 8px;
}
input[type="tel"],
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
      font-family:cairo ;
}
 

button[type="submit"] {
    background-color: #082f00;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-family:cairo ;
    width:100% ;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Add more styling as needed */


/* Add this CSS code to styles.css */

/* Article styling */
article {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
 
 }

/* Section styling */
section {
    margin: 0px auto !important;
    
}

.book {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 15px;
}

.book img {
    width: 100%;
    height: auto;
}

/* Add more styling as needed */
/* Contextual selector - styling navigation items */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline;
    margin-right: 20px;
    font-weight: bold; /* Style for navigation items */
}

/* Contextual selector - styling book list items */
section .book {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.book img {
    width: 100%;
    height: auto;
    float: left; /* Float the image to the left */
    margin-right: 15px; /* Add margin to create space between floated image and text */
}
