
        .card-header {
            /* Gradient for the header */
            background: linear-gradient(to right, #6a11cb, #2575fc); /* Purple to Blue */
            color: white;
            padding: 15px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3); /* Light border */
            border-top-left-radius: 10px;  /* rounded corners */
            border-top-right-radius: 10px;
        }
        .card-body {
            padding: 20px;
            color: #333; /* Darker text for readability */
        }
        .card-footer {
            /* Gradient for the footer */
            background: linear-gradient(to right, #1e3c72, #2a5298);  /* Dark Blue */
            color: white;
            padding: 15px;
            border-top: 2px solid rgba(255, 255, 255, 0.3); /* Light border */
            border-bottom-left-radius: 10px; /* Rounded corners */
            border-bottom-right-radius: 10px;
            display: flex; /* Use flexbox for icon alignment */
            align-items: center;
        }
        .card {
             background-color: #ffffff;
              border-radius: 10px;
              box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow */
              transition: transform 0.3s ease-in-out; /* Smooth transition */
              margin-bottom: 20px;
        }
       .card:hover {
          transform: translateY(-5px); /* Move card slightly up on hover */
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover*/
       }
        .post-id-icon {
            margin-right: 5px; /* Space between icon and text */
        }
        .phone-icon {
            margin-left: 10px; /* Space between icon and text */
        }