/* Global Styles */
/* This style sheet is for mobile friendly web pages /*


    /* ───────────  CONTACT LIST STYLES  ─────────── */



.header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
.add-contact {
            display: inline-block;
            font-size: 2rem;
            line-height: 1;
            text-decoration: none;
            width: 2.5rem;
            height: 2.5rem;
            border: 2px solid #007BFF;
            border-radius: 50%;
            color: #007BFF;
            text-align: center;
            transition: background-color 0.2s;
        }

.container, .contact-container {
    max-width: 400px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Search Input */
input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Contact List Styles */
#contacts-list {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 12px;
    margin: 5px 0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.contact-item:hover {
    background: #f0f0f0;
}

/* Contact Icon Placeholder */
.contact-icon {
    width: 40px;
    height: 40px;
    background: #1c6f16;
    border-radius: 50%;
    margin-right: 10px;
}
.contact-icon_4 {
    width: 40px;
    height: 40px;
    background: #4a047c;
    border-radius: 50%;
    margin-right: 10px;
}

/* Contact Name */
.contact-name {
    font-size: 16px;
    font-weight: bold;
}

/* Back Button */
.back-button {
    display: inline-block;
    margin-bottom: 15px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

/* Contact Details */
.contact-details {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.label {
    font-weight: bold;
}

.description {
    background: #e7f3ff;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 5px;
}

.position {
    font-size: 18px;
    color: #555;
    font-weight: bold;
}

.arrow-link {
    text-decoration: none;
    font-size: 18px;
    margin-left: 8px;
    color: #007bff; /* Bootstrap blue */
    transition: color 0.3s ease-in-out;
}

.arrow-link:hover {
    color: #0056b3; /* Darker blue */
}